mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-08 22:22:24 -05:00
11 lines
167 B
Python
11 lines
167 B
Python
##!/usr/bin/env python
|
|
from __future__ import print_function
|
|
|
|
from flask import Flask
|
|
|
|
from app import create_app
|
|
|
|
application = Flask("app")
|
|
|
|
create_app(application)
|