Files
aquabot/cogs/general.py
2020-05-07 10:49:25 +02:00

27 lines
402 B
Python

"""
Some general commands:
- about
https://discordpy.readthedocs.io/en/latest/ext/commands/cogs.html
"""
# IMPORTS - external
import discord
from discord.ext import commands
import platform
# IMPORTS - internal
import loadconfig
# COG INIT
class General(commands.Cog):
def __init__(self, bot):
self.bot = bot
# COG BODY
# COG ENDING
def setup(bot):
bot.add_cog(General(bot))