Files
notifications-admin/application.py
Kenneth Kehl 23e10b1529 tuple
2025-02-05 10:56:32 -08:00

11 lines
218 B
Python

from flask import Flask
from werkzeug.serving import WSGIRequestHandler
from app import create_app
WSGIRequestHandler.version_string = lambda self: "SecureServer"
application = Flask("app")
create_app(application)