mirror of
https://github.com/Specoolazius/mcserver-discordbot.git
synced 2024-11-25 06:39:41 +01:00
15 lines
201 B
Python
15 lines
201 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)) |