feat: add backend server #9

Merged
pufereq merged 31 commits from feat/add-backend-server into develop 2025-09-19 13:20:40 +00:00
13 changed files with 357 additions and 70 deletions
Showing only changes of commit d96fec0222 - Show all commits

View File

@@ -53,12 +53,7 @@ class JudasWebServer:
def init_routes(self) -> None:
self.logger.debug("Initializing routes...")
from judas_server.web.routes import (
auth_bp,
index_bp,
panel_bp,
api,
)
from judas_server.web.routes import api, auth_bp, index_bp, panel_bp
self.app.register_blueprint(index_bp)
self.app.register_blueprint(auth_bp)