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-24 06:57:38 +00:00
|
|
|
from .book import bp as book_blueprint
|
2023-04-21 11:40:20 +00:00
|
|
|
from .home import bp as home_blueprint
|
2023-05-09 14:56:29 +00:00
|
|
|
from .vote import bp as vote_blueprint
|
2023-05-11 15:02:14 +00:00
|
|
|
from .approve import bp as approve_blueprint
|
2023-05-12 13:49:28 +00:00
|
|
|
from .star import bp as star_blueprint
|
2023-05-23 09:40:33 +00:00
|
|
|
from .permission import bp as permissions_blueprint
|
2023-05-23 12:52:49 +00:00
|
|
|
from .search import bp as search_blueprint
|
2023-06-08 13:44:13 +00:00
|
|
|
from .notifications import bp as notifications_blueprint
|