mirror of
https://github.com/GSA/notifications-admin.git
synced 2025-12-09 06:33:52 -05:00
11 lines
168 B
Python
11 lines
168 B
Python
from gevent import monkey
|
|
|
|
monkey.patch_all()
|
|
|
|
|
|
import newrelic.agent # noqa
|
|
|
|
newrelic.agent.initialize("./newrelic.ini")
|
|
|
|
from application import application # noqa
|