First official build of bot!
Co-authored-by: iakrules <64628083+iakrules@noreply.github.com>
This commit is contained in:
parent
953c89ead0
commit
2b8e2345f9
32 changed files with 1164 additions and 383 deletions
23
cogs/owner/loaderCog.py
Normal file
23
cogs/owner/loaderCog.py
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
import discord
|
||||
from discord.ext import commands
|
||||
|
||||
class LoaderCog(commands.Cog):
|
||||
|
||||
def __init__(self, bot):
|
||||
self.bot = bot
|
||||
|
||||
# Commands
|
||||
@commands.is_owner()
|
||||
@commands.command()
|
||||
async def load(self, ctx, extension):
|
||||
"""Loads a cog"""
|
||||
self.bot.load_extension(f'cogs.{extension}')
|
||||
|
||||
@commands.is_owner()
|
||||
@commands.command()
|
||||
async def unload(self, ctx, extension):
|
||||
"""Unloads a cog"""
|
||||
self.bot.unload_extension(f'cogs.{extension}')
|
||||
|
||||
def setup(bot):
|
||||
bot.add_cog(LoaderCog(bot))
|
||||
Loading…
Add table
Add a link
Reference in a new issue