mirror of
https://github.com/TitanEmbeds/Titan.git
synced 2024-11-15 02:21:21 +01:00
10 lines
434 B
Python
10 lines
434 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
|
|
from keyvalue_properties import KeyValueProperties, set_keyvalproperty, get_keyvalproperty, getexpir_keyvalproperty, setexpir_keyvalproperty, ifexists_keyvalproperty, delete_keyvalproperty
|