Create disableenable.py

This commit is contained in:
Paillat
2022-12-06 16:17:12 +01:00
parent 8c644f7f40
commit d633e8bfe5

11
code/disableenable.py Normal file
View File

@@ -0,0 +1,11 @@
import discord
from discord.ext import commands
from discord import File, Intents # pip install pycord
class Disableenable(commands.Cog):
def __init__(self, bot):
super().__init__()
self.bot = bot # bot is the client
@commands.command()