├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── Procfile ├── README.md ├── _config.yml ├── app.json ├── bot.py ├── docs ├── __init__.py └── docs.py ├── index.md ├── plugins ├── __init__.py ├── callbacks │ └── callbacks.py ├── details │ └── details.py ├── files │ └── files.py ├── filet │ └── filet.py ├── getfromlink │ └── getfromlink.py ├── inlines │ └── inline.py ├── remove │ └── remove.py ├── sendfile │ └── sendfile.py ├── start │ └── start.py └── uploads │ └── uploads.py ├── requirements.txt ├── runtime.txt ├── start.sh └── utils ├── __int__.py ├── dbmanager.py ├── guess.py ├── handlers.py ├── menus.py └── typing.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bfas237/TeleMultiStorebot/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bfas237/TeleMultiStorebot/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bfas237/TeleMultiStorebot/HEAD/.gitignore -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: python3 bot.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bfas237/TeleMultiStorebot/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bfas237/TeleMultiStorebot/HEAD/_config.yml -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bfas237/TeleMultiStorebot/HEAD/app.json -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bfas237/TeleMultiStorebot/HEAD/bot.py -------------------------------------------------------------------------------- /docs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bfas237/TeleMultiStorebot/HEAD/docs/docs.py -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bfas237/TeleMultiStorebot/HEAD/index.md -------------------------------------------------------------------------------- /plugins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/callbacks/callbacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bfas237/TeleMultiStorebot/HEAD/plugins/callbacks/callbacks.py -------------------------------------------------------------------------------- /plugins/details/details.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bfas237/TeleMultiStorebot/HEAD/plugins/details/details.py -------------------------------------------------------------------------------- /plugins/files/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bfas237/TeleMultiStorebot/HEAD/plugins/files/files.py -------------------------------------------------------------------------------- /plugins/filet/filet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bfas237/TeleMultiStorebot/HEAD/plugins/filet/filet.py -------------------------------------------------------------------------------- /plugins/getfromlink/getfromlink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bfas237/TeleMultiStorebot/HEAD/plugins/getfromlink/getfromlink.py -------------------------------------------------------------------------------- /plugins/inlines/inline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bfas237/TeleMultiStorebot/HEAD/plugins/inlines/inline.py -------------------------------------------------------------------------------- /plugins/remove/remove.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bfas237/TeleMultiStorebot/HEAD/plugins/remove/remove.py -------------------------------------------------------------------------------- /plugins/sendfile/sendfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bfas237/TeleMultiStorebot/HEAD/plugins/sendfile/sendfile.py -------------------------------------------------------------------------------- /plugins/start/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bfas237/TeleMultiStorebot/HEAD/plugins/start/start.py -------------------------------------------------------------------------------- /plugins/uploads/uploads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bfas237/TeleMultiStorebot/HEAD/plugins/uploads/uploads.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bfas237/TeleMultiStorebot/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.7.3 2 | -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bfas237/TeleMultiStorebot/HEAD/start.sh -------------------------------------------------------------------------------- /utils/__int__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/dbmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bfas237/TeleMultiStorebot/HEAD/utils/dbmanager.py -------------------------------------------------------------------------------- /utils/guess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bfas237/TeleMultiStorebot/HEAD/utils/guess.py -------------------------------------------------------------------------------- /utils/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bfas237/TeleMultiStorebot/HEAD/utils/handlers.py -------------------------------------------------------------------------------- /utils/menus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bfas237/TeleMultiStorebot/HEAD/utils/menus.py -------------------------------------------------------------------------------- /utils/typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bfas237/TeleMultiStorebot/HEAD/utils/typing.py --------------------------------------------------------------------------------