mirror of
https://github.com/stijndcl/didier.git
synced 2026-06-29 17:39:57 +02:00
Set up basics of SQLAlchemy
This commit is contained in:
parent
1ee9900891
commit
84bb04b711
7 changed files with 65 additions and 13 deletions
|
|
@ -1,3 +1,4 @@
|
|||
from database.utils import create_all_tables
|
||||
from data.snipe import Snipe
|
||||
from discord.ext import commands, ipc
|
||||
from dislash import InteractionClient
|
||||
|
|
@ -38,6 +39,9 @@ class Didier(commands.Bot):
|
|||
# Load all extensions
|
||||
self.init_extensions()
|
||||
|
||||
# Initialize database tables
|
||||
create_all_tables()
|
||||
|
||||
# Check missing files
|
||||
check_all()
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue