├── .gitignore ├── Aptfile ├── Dockerfile ├── LICENSE ├── Procfile ├── README.md ├── app.json ├── heroku.yml ├── mafiabot ├── requirements.txt ├── runtime.txt ├── setup ├── __init__.py └── updater.py ├── string.sh └── string_session.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMafiaBot/MafiaBot/HEAD/.gitignore -------------------------------------------------------------------------------- /Aptfile: -------------------------------------------------------------------------------- 1 | pv 2 | tree 3 | mediainfo 4 | p7zip-full 5 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMafiaBot/MafiaBot/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMafiaBot/MafiaBot/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: bash mafiabot 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMafiaBot/MafiaBot/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMafiaBot/MafiaBot/HEAD/app.json -------------------------------------------------------------------------------- /heroku.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMafiaBot/MafiaBot/HEAD/heroku.yml -------------------------------------------------------------------------------- /mafiabot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMafiaBot/MafiaBot/HEAD/mafiabot -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMafiaBot/MafiaBot/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.10.5 2 | -------------------------------------------------------------------------------- /setup/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /setup/updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMafiaBot/MafiaBot/HEAD/setup/updater.py -------------------------------------------------------------------------------- /string.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMafiaBot/MafiaBot/HEAD/string.sh -------------------------------------------------------------------------------- /string_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMafiaBot/MafiaBot/HEAD/string_session.py --------------------------------------------------------------------------------