Last active
December 16, 2017 15:10
-
-
Save bencleary/98fcb1c702068e25a1129dd17344f5ea to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from __future__ import absolute_import, unicode_literals | |
from celery import shared_task | |
@shared_task | |
def add(x, y): | |
return x + y |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment