File: tasks.py

package info (click to toggle)
python-django-health-check 3.20.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 428 kB
  • sloc: python: 1,886; makefile: 6
file content (6 lines) | stat: -rw-r--r-- 99 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
from celery import shared_task


@shared_task(ignore_result=False)
def add(x, y):
    return x + y