├── .gitattributes ├── .gitignore ├── LICENSE ├── Procfile ├── README.md ├── config.json ├── data.json ├── lang ├── en.json ├── id.json ├── zh.json └── zh_moe1.json ├── main.py ├── preference.json └── requirements.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netrvin/telegram-pm-chat-bot/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netrvin/telegram-pm-chat-bot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netrvin/telegram-pm-chat-bot/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: python3 main.py 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netrvin/telegram-pm-chat-bot/HEAD/README.md -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netrvin/telegram-pm-chat-bot/HEAD/config.json -------------------------------------------------------------------------------- /data.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /lang/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netrvin/telegram-pm-chat-bot/HEAD/lang/en.json -------------------------------------------------------------------------------- /lang/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netrvin/telegram-pm-chat-bot/HEAD/lang/id.json -------------------------------------------------------------------------------- /lang/zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netrvin/telegram-pm-chat-bot/HEAD/lang/zh.json -------------------------------------------------------------------------------- /lang/zh_moe1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netrvin/telegram-pm-chat-bot/HEAD/lang/zh_moe1.json -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netrvin/telegram-pm-chat-bot/HEAD/main.py -------------------------------------------------------------------------------- /preference.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | python-telegram-bot==11.1.0 2 | --------------------------------------------------------------------------------