├── LICENSE ├── README.md ├── cogs ├── giveaways.json └── giveaways.py ├── config.json ├── main.py └── requirements.txt /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cursorr/GiveawayBot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cursorr/GiveawayBot/HEAD/README.md -------------------------------------------------------------------------------- /cogs/giveaways.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /cogs/giveaways.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cursorr/GiveawayBot/HEAD/cogs/giveaways.py -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cursorr/GiveawayBot/HEAD/config.json -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cursorr/GiveawayBot/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | discord.py==1.7.1 2 | --------------------------------------------------------------------------------