7 lines
224 B
Python
7 lines
224 B
Python
from app.routes.auth import auth_bp
|
|
from app.routes.main import main_bp
|
|
from app.routes.sets import sets_bp
|
|
from app.routes.instructions import instructions_bp
|
|
|
|
__all__ = ['auth_bp', 'main_bp', 'sets_bp', 'instructions_bp']
|