blob: b067f731051a2ab431c7f0275a33518874b7da1d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
import discord
from discord.ext import commands
import os
from utils.database import Base, engine
import utils.config as config
class MyBot(commands.Bot):
def __init__(self):
super().__init__(
command_prefix="#",
intents=discord.Intents.default(),
)
async def setup_hook(self):
for ext in os.listdir("./code/cogs"):
if ext.endswith(".py"):
await self.load_extension(f"cogs.{ext[:-3]}")
bot = MyBot()
bot.remove_command("help")
@bot.event
async def on_ready():
config.LOG.info(f"{bot.user} has connected to Discord.")
if __name__ == "__main__":
Base.metadata.create_all(bind=engine)
config.load_config()
bot.run(config.BOT_TOKEN)
|