PCv5/app/routes/__init__.py

17 lines
512 B
Python

# Register routes here
from app.routes import index, search, users, tools, development
from app.routes.account import login, account, notification, polls
from app.routes.admin import index, groups, account, trophies, forums, \
attachments, config, members
from app.routes.forum import index, topic
from app.routes.polls import vote
from app.routes.posts import edit
from app.routes.programs import index
from app.routes.api import markdown
try:
from app.routes import test
except ImportError:
pass