mirror of
https://github.com/GSA/notifications-api.git
synced 2026-02-16 16:12:47 -05:00
10 lines
167 B
Python
10 lines
167 B
Python
from gevent import monkey
|
|
|
|
monkey.patch_all()
|
|
|
|
import newrelic.agent # noqa
|
|
|
|
newrelic.agent.initialize("./newrelic.ini")
|
|
|
|
from application import application # noqa
|