mirror of
https://github.com/jlengrand/bugsink.git
synced 2026-03-10 08:01:17 +00:00
17 lines
296 B
Python
17 lines
296 B
Python
from celery import shared_task
|
|
|
|
|
|
@shared_task
|
|
def send_new_issue_alert(issue_id):
|
|
raise NotImplementedError("TODO")
|
|
|
|
|
|
@shared_task
|
|
def send_regression_alert(issue_id):
|
|
raise NotImplementedError("TODO")
|
|
|
|
|
|
@shared_task
|
|
def send_unmute_alert(issue_id):
|
|
raise NotImplementedError("TODO")
|