Titan/titanembeds/database/__init__.py

8 lines
244 B
Python
Raw Normal View History

from flask_sqlalchemy import SQLAlchemy
db = SQLAlchemy()
from guilds import Guilds
from unauthenticated_users import UnauthenticatedUsers
from unauthenticated_bans import UnauthenticatedBans
2017-03-15 02:18:57 +01:00
from authenticated_users import AuthenticatedUsers