mirror of
https://github.com/Specoolazius/mcserver-discordbot.git
synced 2024-11-25 08:19:42 +01:00
13 lines
199 B
Python
13 lines
199 B
Python
|
import discord
|
||
|
|
||
|
from libs import ServerBot
|
||
|
|
||
|
|
||
|
class Developer(discord.Cog):
|
||
|
|
||
|
def __init__(self, bot: ServerBot):
|
||
|
self.bot = bot
|
||
|
|
||
|
|
||
|
def setup(bot: ServerBot):
|
||
|
bot.add_cog(Developer(bot))
|