Repository URL to install this package:
|
Version:
4.2.2 ▾
|
"""Helper tasks for integration tests."""
from __future__ import absolute_import, unicode_literals
from celery import shared_task
@shared_task(name='celery.ping')
def ping():
# type: () -> str
"""Simple task that just returns 'pong'."""
return 'pong'