ninaapp/cogs/mod.py
2025-05-04 19:18:08 -04:00

11 lines
No EOL
295 B
Python

from discord.ext import commands
import discord
from main import Vaius
class Mod(commands.Cog):
def __init__(self, bot):
self.bot = bot
@commands.command()
async def ban(self, ctx: commands.Context, user: discord.User):
await ctx.channel.remove_recipients(user)