GammaRPBot/GammaRPBot_Define.py

11 lines
318 B
Python
Raw Normal View History

import discord
import aiosqlite
from discord.ext import commands
from discord import app_commands
class GammaRPBot(commands.Bot):
db:aiosqlite.Connection
def __init__(self,intents:discord.Intents):
super().__init__(command_prefix="/",intents=intents)
async def setup_hook(self)->None:
pass