Changed file structure.

Moved code to main bot and cog files.
This commit is contained in:
2021-07-15 23:13:01 +01:00
parent b0b417a8d2
commit 1fa5029212
23 changed files with 139 additions and 1454 deletions

31
app/cogs/dev/dev.py Normal file
View File

@ -0,0 +1,31 @@
import os
from dotenv import load_dotenv # Import OS variables from Dotenv file.
load_dotenv() # Load Dotenv. Delete this for production
import asyncio # Discord Py Dependency
import discord # Main Lib
from discord.ext import commands # Commands module
from discord_slash import SlashCommand, SlashContext, cog_ext, utils # Slash Command Library
from discord_slash.utils.manage_commands import create_choice, create_option # Slash Command features
from bot import loadCog, unloadCog
##### Dev Cog
class Dev(commands.Cog):
def __init__(self, client):
self.client = client
@commands.command(
name='debug',
description='Toggles debug feature for the guild. Enter either `on` or `off`.',
brief='Toggle debug features.'
)
async def _debug(self, ctx, toggle:str):
if toggle.lower() == 'on':
loadCog(f'./debug/debug.py')
await ctx.reply(f'Debug commands enabled. Use them carefully.')
elif toggle.lower() == 'off':
unloadCog(f'./debug/debug.py')
await ctx.reply(f'Debug commands disabled.')
def setup(client):
client.add_cog(Dev(client))