mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-12 00:02:36 -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
|