GammaRPBot/main-bot.py

27 lines
No EOL
673 B
Python

import discord
import aiosqlite
from discord.ext import commands
from discord import app_commands
import logging
import sys
from public_env import *
from GammaRPBot_Define import GammaRPBot
formatter = discord.utils._ColourFormatter()
handler = logging.StreamHandler(sys.stdout)
handler.setFormatter(formatter)
logging.basicConfig(level=logging.INFO, handlers=[handler])
logger = logging.getLogger()
intents = discord.Intents.all()
bot = GammaRPBot(intents)
@bot.event
async def on_ready():
bot.db = await aiosqlite.connect("main.db")
await bot.load_extension("perso_commands")
await bot.tree.sync()
print(f"Logged in as {bot.user}")
bot.run(bot_token)