Files
Botator/code/disableenable.py

11 lines
263 B
Python
Raw Normal View History

2022-12-06 16:17:12 +01:00
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()