2020-08-11 08:26:05 +00:00
|
|
|
import discord
|
|
|
|
from discord.ext import commands
|
|
|
|
from utils import config
|
2020-08-11 09:09:11 +00:00
|
|
|
import os
|
2020-08-11 08:26:05 +00:00
|
|
|
|
|
|
|
bot = commands.Bot(config.get("prefix"))
|
|
|
|
|
2020-08-11 09:09:11 +00:00
|
|
|
@bot.event
|
|
|
|
async def on_ready():
|
|
|
|
print("Loading cogs...", end=" ", flush=True)
|
|
|
|
for file in os.listdir("./cogs"):
|
|
|
|
if file.endswith(".py"):
|
|
|
|
bot.load_extension(f"cogs.{file[:-3]}")
|
|
|
|
print("Done!")
|
|
|
|
|
2020-08-11 08:26:05 +00:00
|
|
|
bot.run(config.get("token"))
|