mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-09 06:32:11 -05:00
14 lines
309 B
Python
14 lines
309 B
Python
#!/usr/bin/env python
|
|
|
|
from flask import Flask
|
|
|
|
# notify_celery is referenced from manifest_delivery_base.yml, and cannot be removed
|
|
from app import notify_celery, create_app # noqa
|
|
|
|
|
|
application = Flask('delivery')
|
|
create_app(application)
|
|
application.app_context().push()
|
|
|
|
1 / 0 # TODO: revert this change
|