Skip to content

Commit 7f993f8

Browse files
authored
🏷️ rewrote admin cog (#43)
🌟 rewrote admin cog
2 parents 2ca482a + 8c4a029 commit 7f993f8

35 files changed

+506
-693
lines changed

β€Žbase/__init__.py

Lines changed: 0 additions & 10 deletions
This file was deleted.

β€Žbase/blacklist_view.py

Lines changed: 0 additions & 103 deletions
This file was deleted.

β€Žbase/view.py

Lines changed: 0 additions & 81 deletions
This file was deleted.

β€Žbot/__init__.py

Lines changed: 0 additions & 5 deletions
This file was deleted.

β€Žbot/cogs/__init__.py

Lines changed: 0 additions & 6 deletions
This file was deleted.

β€Žbot/cogs/admin/__init__.py

Lines changed: 0 additions & 4 deletions
This file was deleted.

β€Žbot/cogs/admin/admin_cog.py

Lines changed: 0 additions & 85 deletions
This file was deleted.

β€Žconfig.json

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
11
{
2-
"extension_filepaths": [
3-
"bot.cogs.admin.admin_cog"
4-
],
5-
6-
"handler_filepaths": []
2+
"extension_filepaths": ["ext.commands.mod"]
73
}

β€Žcore/__init__.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
"""
2+
Module `core` contains the base code used to run a Discord
3+
bot with a MongoDB client and Twitch API client.
4+
5+
This module can be used as a standalone library to serve as
6+
a base for adding your own cogs to.
7+
"""
8+
from .discord_client import DiscordClient
File renamed without changes.

0 commit comments

Comments
Β (0)