tasks.py 78 B

123456
  1. from celery import shared_task
  2. @shared_task
  3. def add(x, y):
  4. return x + y