20 lines
415 B
Python
20 lines
415 B
Python
from .default import default_blueprint
|
|
|
|
from .auth import auth_blueprint
|
|
from .user import user_blueprint
|
|
from .quiz import quiz_bp
|
|
from .history import history_blueprint
|
|
from .subject import subject_blueprint
|
|
|
|
__all__ = [
|
|
"default_blueprint",
|
|
"auth_blueprint",
|
|
"user_blueprint",
|
|
"quiz_bp",
|
|
"history_blueprint",
|
|
"subject_blueprint",
|
|
]
|
|
|
|
|
|
# from .user import user_blueprint
|