├── .env ├── .github └── ISSUE_TEMPLATE │ ├── bug.md │ └── question.md ├── LICENSE ├── README.md ├── config.json ├── index.py └── requirements.txt /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samsunghappytree123/discord-Promotion-Bot/HEAD/.env -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samsunghappytree123/discord-Promotion-Bot/HEAD/.github/ISSUE_TEMPLATE/bug.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samsunghappytree123/discord-Promotion-Bot/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samsunghappytree123/discord-Promotion-Bot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samsunghappytree123/discord-Promotion-Bot/HEAD/README.md -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samsunghappytree123/discord-Promotion-Bot/HEAD/config.json -------------------------------------------------------------------------------- /index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samsunghappytree123/discord-Promotion-Bot/HEAD/index.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samsunghappytree123/discord-Promotion-Bot/HEAD/requirements.txt --------------------------------------------------------------------------------