mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-09 14:42:24 -05:00
14 lines
280 B
Python
14 lines
280 B
Python
##!/usr/bin/env python
|
|
from __future__ import print_function
|
|
|
|
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)
|