carom-server/billard/tasks.py
2017-02-06 20:13:08 +01:00

9 lines
156 B
Python

from __future__ import absolute_import, unicode_literals
from celery import shared_task
from . import models
@shared_task
def add(x, y):
return x + y