factory/apps/system/tasks.py

10 lines
157 B
Python
Executable File

# Create your tasks here
from __future__ import absolute_import, unicode_literals
from celery import shared_task
@shared_task
def show():
print('ok')