mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-21 16:01:15 -05:00
9 lines
227 B
Python
9 lines
227 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
|