├── .gitignore ├── LICENSE ├── Procfile ├── README.md ├── app.json ├── bot.py ├── plugins ├── help.py ├── info.py └── pm.py ├── presets.py ├── requirements.txt ├── runtime.txt └── sample_config.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4mallu/PMChatbot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4mallu/PMChatbot/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: python3 bot.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4mallu/PMChatbot/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4mallu/PMChatbot/HEAD/app.json -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4mallu/PMChatbot/HEAD/bot.py -------------------------------------------------------------------------------- /plugins/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4mallu/PMChatbot/HEAD/plugins/help.py -------------------------------------------------------------------------------- /plugins/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4mallu/PMChatbot/HEAD/plugins/info.py -------------------------------------------------------------------------------- /plugins/pm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4mallu/PMChatbot/HEAD/plugins/pm.py -------------------------------------------------------------------------------- /presets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4mallu/PMChatbot/HEAD/presets.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4mallu/PMChatbot/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.8.7 -------------------------------------------------------------------------------- /sample_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4mallu/PMChatbot/HEAD/sample_config.py --------------------------------------------------------------------------------