mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-09 06:32:11 -05:00
15 lines
315 B
Python
15 lines
315 B
Python
##!/usr/bin/env python
|
|
|
|
from __future__ import print_function
|
|
|
|
from flask import Flask # noqa
|
|
from werkzeug.serving import WSGIRequestHandler # noqa
|
|
|
|
from app import create_app, socketio # noqa
|
|
|
|
WSGIRequestHandler.version_string = lambda self: "SecureServer"
|
|
|
|
application = Flask("app")
|
|
|
|
create_app(application)
|