|
@@ -3,7 +3,7 @@ from discord.ext import commands
|
|
|
from discord.commands import slash_command
|
|
from discord.commands import slash_command
|
|
|
|
|
|
|
|
|
|
|
|
|
-class Base(commands.Cog):
|
|
|
|
|
|
|
+class Hello(commands.Cog):
|
|
|
def __init__(self, bot: discord.Bot):
|
|
def __init__(self, bot: discord.Bot):
|
|
|
self.bot = bot
|
|
self.bot = bot
|
|
|
|
|
|
|
@@ -13,4 +13,4 @@ class Base(commands.Cog):
|
|
|
|
|
|
|
|
|
|
|
|
|
def setup(bot: discord.Bot):
|
|
def setup(bot: discord.Bot):
|
|
|
- bot.add_cog(Base(bot))
|
|
|
|
|
|
|
+ bot.add_cog(Hello(bot))
|