PCv5/app/routes/__init__.py

18 lines
578 B
Python
Raw Normal View History

# Register routes here
from app.routes import index, search, users, tools, development
2021-02-20 01:28:08 +01:00
from app.routes.account import login, account, notification, polls
from app.routes.admin import index, groups, account, trophies, forums, \
attachments, config, members, polls, login_as
from app.routes.forum import index, topic
from app.routes.polls import vote, delete
from app.routes.posts import edit
from app.routes.programs import index
2020-09-23 23:58:25 +02:00
from app.routes.api import markdown
2021-07-23 23:28:18 +02:00
from app.routes.api.admin import members
try:
from app.routes import test
except ImportError:
pass