diff options
-rw-r--r-- | bot/seasons/evergreen/space.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/bot/seasons/evergreen/space.py b/bot/seasons/evergreen/space.py new file mode 100644 index 00000000..a86c4eb3 --- /dev/null +++ b/bot/seasons/evergreen/space.py @@ -0,0 +1,16 @@ +from discord.ext.commands import Cog + +from bot.bot import SeasonalBot + + +class Space(Cog): + """Space Cog contains commands, that show images, facts or other information about space.""" + + def __init__(self, bot: SeasonalBot): + self.bot = bot + self.http_session = bot.http_session + + +def setup(bot: SeasonalBot) -> None: + """Load Space Cog.""" + bot.add_cog(Space(bot)) |