mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-09 14:42:24 -05:00
13 lines
202 B
Python
13 lines
202 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)
|
|
|
|
1 / 0 # TODO: revert this change
|