release/0.3.0 #10

Merged
pufereq merged 32 commits from release/0.3.0 into main 2025-09-19 13:28:10 +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)