38 lines
935 B
Python
38 lines
935 B
Python
# load sqlalchemy's declarative base...
|
|
from sqlalchemy.ext.declarative import declarative_base
|
|
Base = declarative_base()
|
|
|
|
# then load our required constants...
|
|
from files.helpers.const import FEATURES, KOFI_TOKEN
|
|
|
|
# then load all of our classes :)
|
|
from .alts import *
|
|
from .clients import *
|
|
from .comment import *
|
|
from .domains import *
|
|
from .flags import *
|
|
from .user import *
|
|
from .badges import *
|
|
from .userblock import *
|
|
from .submission import *
|
|
from .votes import *
|
|
from .domains import *
|
|
from .subscriptions import *
|
|
from .mod_logs import *
|
|
from .award import *
|
|
from .sub_relationship import *
|
|
from .saves import *
|
|
from .views import *
|
|
from .notifications import *
|
|
from .follows import *
|
|
from .lottery import *
|
|
from .casino_game import *
|
|
from .hats import *
|
|
from .marsey import *
|
|
if KOFI_TOKEN:
|
|
from .transactions import *
|
|
from .sub_logs import *
|
|
from .media import *
|
|
if FEATURES['STREAMERS']:
|
|
from .streamers import *
|