File: unit_tasks.py

package info (click to toggle)
celery 5.5.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 8,008 kB
  • sloc: python: 64,346; sh: 795; makefile: 378
file content (6 lines) | stat: -rw-r--r-- 78 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
from celery import shared_task


@shared_task
def mul(x, y):
    return x * y