├── Aptfile ├── LICENSE ├── Procfile ├── README.md ├── app.json ├── requirements.txt ├── setup └── updater.py /Aptfile: -------------------------------------------------------------------------------- 1 | mediainfo 2 | p7zip-full 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/HellBot/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: bash setup 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/HellBot/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/HellBot/HEAD/app.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/HellBot/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/HellBot/HEAD/setup -------------------------------------------------------------------------------- /updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/HellBot/HEAD/updater.py --------------------------------------------------------------------------------