├── .gitignore └── .gitignore ├── README.md ├── config-default.json ├── data.json ├── lang ├── en.json ├── zh.json └── zh_moe1.json ├── main.py └── preference.json /.gitignore/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/610312586/Telegram-chatbot/HEAD/.gitignore/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/610312586/Telegram-chatbot/HEAD/README.md -------------------------------------------------------------------------------- /config-default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/610312586/Telegram-chatbot/HEAD/config-default.json -------------------------------------------------------------------------------- /data.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /lang/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/610312586/Telegram-chatbot/HEAD/lang/en.json -------------------------------------------------------------------------------- /lang/zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/610312586/Telegram-chatbot/HEAD/lang/zh.json -------------------------------------------------------------------------------- /lang/zh_moe1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/610312586/Telegram-chatbot/HEAD/lang/zh_moe1.json -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/610312586/Telegram-chatbot/HEAD/main.py -------------------------------------------------------------------------------- /preference.json: -------------------------------------------------------------------------------- 1 | {} --------------------------------------------------------------------------------