open-law/app/views/__init__.py

8 lines
248 B
Python
Raw Normal View History

2023-04-20 16:10:16 +03:00
# flake8: noqa F401
from .auth import auth_blueprint
from .main import main_blueprint
from .user import bp as user_blueprint
2023-04-24 09:57:38 +03:00
from .book import bp as book_blueprint
2023-04-21 14:40:20 +03:00
from .home import bp as home_blueprint
2023-04-28 12:12:46 +03:00
from .section import bp as section_blueprint