14 lines
386 B
Python
14 lines
386 B
Python
from .main_bp import main_bp
|
|
from .health_bp import health_bp
|
|
from .upload_bp import upload_bp
|
|
from .process_bp import process_bp
|
|
from .download_bp import download_bp
|
|
|
|
|
|
def register_routes(app):
|
|
app.register_blueprint(main_bp)
|
|
app.register_blueprint(health_bp)
|
|
app.register_blueprint(upload_bp)
|
|
app.register_blueprint(process_bp)
|
|
app.register_blueprint(download_bp)
|