mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-22 00:11:16 -05:00
10 lines
228 B
Python
10 lines
228 B
Python
from app import notify_celery
|
|
from app.statsd_decorators import statsd
|
|
|
|
|
|
@notify_celery.task(bind=True, name='record_initial_job_statistics')
|
|
@statsd(namespace="tasks")
|
|
def record_initial_job_statistics(notification):
|
|
pass
|
|
|