refactor: use OOP #6

Merged
pufereq merged 15 commits from refactor/use-oop into develop 2025-08-25 17:56:23 +00:00
14 changed files with 286 additions and 235 deletions
Showing only changes of commit a3e9aed6f4 - Show all commits

View File

@@ -48,6 +48,6 @@ class JudasWebServer:
self.app.register_blueprint(panel_bp)
def run(self, host: str = "0.0.0.0", port: int = 5000) -> None:
self.logger.info(f"Starting server on {host}:{port}...")
self.logger.info(f"Starting web server on {host}:{port}...")
self.app.run(host=host, port=port)
self.logger.info("Server stopped.")