Files

11 lines
218 B
Python
Raw Permalink Normal View History

2025-07-28 11:17:00 -07:00
from flask import Flask
from werkzeug.serving import WSGIRequestHandler
2022-11-28 15:53:56 -05:00
2025-07-28 11:17:00 -07:00
from app import create_app
2017-11-06 13:07:21 +00:00
2025-02-05 10:56:32 -08:00
WSGIRequestHandler.version_string = lambda self: "SecureServer"
application = Flask("app")
2018-12-21 10:40:00 +00:00
create_app(application)