This commit is contained in:
2025-10-21 20:29:39 +09:00
parent 230ea0890d
commit bc15452181
163 changed files with 5177 additions and 16122 deletions

View File

@@ -8,6 +8,8 @@ from .xml import register_xml_routes
from .utilities import register_util_routes
from .file_view import register_file_view
from .jobs import register_jobs_routes
from .idrac_routes import register_idrac_routes
from .catalog_sync import catalog_bp
def register_routes(app: Flask, socketio=None) -> None:
"""블루프린트 일괄 등록. socketio는 main 라우트에서만 사용."""
@@ -18,4 +20,6 @@ def register_routes(app: Flask, socketio=None) -> None:
register_xml_routes(app)
register_util_routes(app)
register_file_view(app)
register_jobs_routes(app)
register_jobs_routes(app)
register_idrac_routes(app)
app.register_blueprint(catalog_bp)