open-law/app/views/__init__.py
Kostiantyn Stoliarskyi 59c1bed020 basic view of all books
2023-04-24 11:31:54 +03:00

7 lines
203 B
Python

# flake8: noqa F401
from .auth import auth_blueprint
from .main import main_blueprint
from .user import bp as user_blueprint
from .book import bp as book_blueprint
from .home import bp as home_blueprint