mirror of
https://github.com/GSA/notifications-admin.git
synced 2025-12-08 14:14:27 -05:00
11 lines
218 B
Python
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)
|