mirror of
https://github.com/GSA/notifications-admin.git
synced 2025-12-11 15:43:45 -05:00
15 lines
289 B
Python
15 lines
289 B
Python
from gevent import monkey
|
|
|
|
monkey.patch_all()
|
|
|
|
from flask import Flask # noqa
|
|
from werkzeug.serving import WSGIRequestHandler # noqa
|
|
|
|
from app import create_app # noqa
|
|
|
|
WSGIRequestHandler.version_string = lambda self: "SecureServer"
|
|
|
|
application = Flask("app")
|
|
|
|
create_app(application)
|