├── .gitignore ├── Dockerfile ├── LICENSE ├── Procfile ├── README.md ├── app.json ├── bot.py ├── config.py ├── database └── database.py ├── helper_func.py ├── main.py ├── plugins ├── __init__.py ├── cbb.py ├── channel_post.py ├── link_generator.py ├── route.py ├── start.py ├── useless.py └── user_id.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JishuDeveloper/File-Sharing-Bot/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JishuDeveloper/File-Sharing-Bot/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JishuDeveloper/File-Sharing-Bot/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: python3 main.py 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JishuDeveloper/File-Sharing-Bot/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JishuDeveloper/File-Sharing-Bot/HEAD/app.json -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JishuDeveloper/File-Sharing-Bot/HEAD/bot.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JishuDeveloper/File-Sharing-Bot/HEAD/config.py -------------------------------------------------------------------------------- /database/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JishuDeveloper/File-Sharing-Bot/HEAD/database/database.py -------------------------------------------------------------------------------- /helper_func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JishuDeveloper/File-Sharing-Bot/HEAD/helper_func.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- 1 | from bot import Bot 2 | 3 | Bot().run() 4 | -------------------------------------------------------------------------------- /plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JishuDeveloper/File-Sharing-Bot/HEAD/plugins/__init__.py -------------------------------------------------------------------------------- /plugins/cbb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JishuDeveloper/File-Sharing-Bot/HEAD/plugins/cbb.py -------------------------------------------------------------------------------- /plugins/channel_post.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JishuDeveloper/File-Sharing-Bot/HEAD/plugins/channel_post.py -------------------------------------------------------------------------------- /plugins/link_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JishuDeveloper/File-Sharing-Bot/HEAD/plugins/link_generator.py -------------------------------------------------------------------------------- /plugins/route.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JishuDeveloper/File-Sharing-Bot/HEAD/plugins/route.py -------------------------------------------------------------------------------- /plugins/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JishuDeveloper/File-Sharing-Bot/HEAD/plugins/start.py -------------------------------------------------------------------------------- /plugins/useless.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JishuDeveloper/File-Sharing-Bot/HEAD/plugins/useless.py -------------------------------------------------------------------------------- /plugins/user_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JishuDeveloper/File-Sharing-Bot/HEAD/plugins/user_id.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JishuDeveloper/File-Sharing-Bot/HEAD/requirements.txt --------------------------------------------------------------------------------