10 lines
318 B
Python
10 lines
318 B
Python
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
|