guava/code/cogs/owner/toggle.py
Parker b343d0d45b
Some checks are pending
Create and publish a Docker image / build-and-push-image (push) Waiting to run
Better fix
2025-03-25 23:14:40 -05:00

27 lines
731 B
Python

from discord.ext import commands
from typing import Literal
class Toggle(commands.Cog):
def __init__(self, bot):
self.bot = bot
@commands.command()
@commands.dm_only()
@commands.is_owner()
async def toggle(self, ctx, action: Literal["on", "off"]):
"""Toggle YouTube as broken or not"""
if action == "on":
self.bot.youtube_broken = False
return await ctx.send("YouTube has been enabled.")
if action == "off":
self.bot.youtube_broken = True
return await ctx.send("YouTube has been marked as broken.")
await ctx.send("Invalid action. Please use 'on' or 'off'.")
async def setup(bot):
await bot.add_cog(Toggle(bot))