2022-03-30 16:08:06 +02:00
|
|
|
import discord
|
|
|
|
|
|
|
|
from libs import ServerBot
|
|
|
|
|
|
|
|
|
|
|
|
class Developer(discord.Cog):
|
|
|
|
|
|
|
|
def __init__(self, bot: ServerBot):
|
|
|
|
self.bot = bot
|
|
|
|
|
|
|
|
|
2022-03-30 19:42:46 +02:00
|
|
|
|
|
|
|
|
2022-03-30 16:08:06 +02:00
|
|
|
def setup(bot: ServerBot):
|
|
|
|
bot.add_cog(Developer(bot))
|