├── Aptfile ├── Procfile ├── README.md ├── SECURITY.md ├── app.json ├── hell_string.py ├── logging.conf ├── render.yaml ├── requirements.txt ├── runtime.txt ├── server.py ├── updater.py └── warbot /Aptfile: -------------------------------------------------------------------------------- 1 | git -y 2 | pv 3 | tree 4 | mediainfo 5 | -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: bash warbot 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeAbhish3k/waruserbot/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeAbhish3k/waruserbot/HEAD/SECURITY.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeAbhish3k/waruserbot/HEAD/app.json -------------------------------------------------------------------------------- /hell_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeAbhish3k/waruserbot/HEAD/hell_string.py -------------------------------------------------------------------------------- /logging.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeAbhish3k/waruserbot/HEAD/logging.conf -------------------------------------------------------------------------------- /render.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeAbhish3k/waruserbot/HEAD/render.yaml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeAbhish3k/waruserbot/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.10.6 2 | -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeAbhish3k/waruserbot/HEAD/server.py -------------------------------------------------------------------------------- /updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeAbhish3k/waruserbot/HEAD/updater.py -------------------------------------------------------------------------------- /warbot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeAbhish3k/waruserbot/HEAD/warbot --------------------------------------------------------------------------------