open-law/app/views/__init__.py

7 lines
205 B
Python
Raw Normal View History

2023-04-20 13:10:16 +00:00
# flake8: noqa F401
from .auth import auth_blueprint
from .main import main_blueprint
from .user import bp as user_blueprint
2023-04-21 07:48:06 +00:00
from .books import bp as books_blueprint
2023-04-21 11:40:20 +00:00
from .home import bp as home_blueprint