File: unit_tasks.py

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


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