├── .gitignore ├── LICENSE ├── Procfile ├── README.md ├── app.json ├── bot.py ├── config.py ├── database └── database.py ├── logger.py ├── plugins ├── Forcesub.py ├── callback.py ├── commands.py └── storefile.py ├── requirements.txt └── runtime.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ns-Bots/TG-File-Store/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ns-Bots/TG-File-Store/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: python3 bot.py 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ns-Bots/TG-File-Store/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ns-Bots/TG-File-Store/HEAD/app.json -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ns-Bots/TG-File-Store/HEAD/bot.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ns-Bots/TG-File-Store/HEAD/config.py -------------------------------------------------------------------------------- /database/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ns-Bots/TG-File-Store/HEAD/database/database.py -------------------------------------------------------------------------------- /logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ns-Bots/TG-File-Store/HEAD/logger.py -------------------------------------------------------------------------------- /plugins/Forcesub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ns-Bots/TG-File-Store/HEAD/plugins/Forcesub.py -------------------------------------------------------------------------------- /plugins/callback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ns-Bots/TG-File-Store/HEAD/plugins/callback.py -------------------------------------------------------------------------------- /plugins/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ns-Bots/TG-File-Store/HEAD/plugins/commands.py -------------------------------------------------------------------------------- /plugins/storefile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ns-Bots/TG-File-Store/HEAD/plugins/storefile.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ns-Bots/TG-File-Store/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.11.0 2 | --------------------------------------------------------------------------------