Added /action command

This commit is contained in:
2023-05-07 11:01:28 +02:00
parent 16f3d4bc56
commit 35ee903abb
4 changed files with 87 additions and 1 deletions

View File

@@ -6,6 +6,7 @@ from cogs.admin import Admin
from cogs.analytics import Analytics
from cogs.custom_channels import CustomChannels
from cogs.data import Data
from cogs.fun import Fun
from cogs.logger import Logger
from modules.client import client
from modules.scheduled import scheduler
@@ -70,6 +71,7 @@ def main():
client.add_cog(Analytics(client))
client.add_cog(CustomChannels(client))
client.add_cog(Data(client))
client.add_cog(Fun(client))
client.add_cog(Logger(client))
try: