mirror of
https://github.com/TitanEmbeds/Titan.git
synced 2024-11-15 10:22:43 +01:00
8 lines
244 B
Python
8 lines
244 B
Python
from flask_sqlalchemy import SQLAlchemy
|
|
db = SQLAlchemy()
|
|
|
|
from guilds import Guilds
|
|
from unauthenticated_users import UnauthenticatedUsers
|
|
from unauthenticated_bans import UnauthenticatedBans
|
|
from authenticated_users import AuthenticatedUsers
|