17 lines
317 B
Python
17 lines
317 B
Python
import discord
|
|
from discord import app_commands
|
|
from discord.app_commands import Choice
|
|
from discord.ext import commands
|
|
|
|
from classes.my_cog import MyCog
|
|
|
|
|
|
class Admin(MyCog):
|
|
def __init__(self, bot):
|
|
super().__init__(bot)
|
|
self.bot = bot
|
|
|
|
|
|
async def setup(bot):
|
|
await bot.add_cog(Admin(bot))
|