├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── compose.yaml ├── img └── altminder2.jpg ├── requirements.txt ├── src ├── bot.py └── stats.py └── stats.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitfl0wer/altminder/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitfl0wer/altminder/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitfl0wer/altminder/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitfl0wer/altminder/HEAD/README.md -------------------------------------------------------------------------------- /compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitfl0wer/altminder/HEAD/compose.yaml -------------------------------------------------------------------------------- /img/altminder2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitfl0wer/altminder/HEAD/img/altminder2.jpg -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | py-cord>=2.4.0 2 | python-dotenv>=0.21.1 3 | -------------------------------------------------------------------------------- /src/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitfl0wer/altminder/HEAD/src/bot.py -------------------------------------------------------------------------------- /src/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitfl0wer/altminder/HEAD/src/stats.py -------------------------------------------------------------------------------- /stats.txt: -------------------------------------------------------------------------------- 1 | 5 --------------------------------------------------------------------------------