bug fix on application context with threads

This commit is contained in:
2025-04-15 16:39:05 +01:00
parent 32e3ca5bb0
commit 4685ddc1c8
5 changed files with 36 additions and 49 deletions
+1 -1
View File
@@ -13,13 +13,13 @@ def create_app():
# Load configuration
app.config.from_object(Config)
# Setup CORS
CORS(app)
# Register blueprints
app.register_blueprint(auth_bp)
app.register_blueprint(autocall_bp, url_prefix="/autocall")
# Error Handlers
app.register_error_handler(405, method_not_allowed)
app.register_error_handler(415, unsupported_media_type)