rDrama/files/routes/__init__.py
2023-02-09 10:12:49 -06:00

22 lines
522 B
Python

from files.__main__ import app
from .admin import *
from .comments import *
from .errors import *
from .reporting import *
from .front import *
from .login import *
from .oauth import *
from .posts import *
from .search import *
from .settings import *
from .static import *
from .users import *
from .votes import *
from .feeds import *
if FEATURES['AWARDS']:
from .awards import * # disable entirely pending possible future use of coins
from .volunteer import *
if app.debug:
from .dev import *
# from .subs import *