Files
notifications-admin/app/main/__init__.py
Chris Hill-Scott 22fe164711 Move feedback endpoints into own file
Doesn’t make sense to shove more stuff into index.py
2016-04-26 14:45:31 +01:00

30 lines
471 B
Python

from flask import Blueprint
main = Blueprint('main', __name__) # noqa
from app.main.views import (
index,
sign_in,
sign_out,
register,
two_factor,
verify,
send,
add_service,
code_not_received,
jobs, dashboard,
templates,
service_settings,
forgot_password,
new_password,
styleguide,
user_profile,
choose_service,
api_keys,
manage_users,
invites,
all_services,
tour,
feedback
)