10 lines
197 B
Python
10 lines
197 B
Python
from celery import Celery
|
|
|
|
application = Celery("demo", backend="redis://localhost:6379/0", broker='redis://localhost//')
|
|
|
|
|
|
@application.task
|
|
def show_text():
|
|
print("Hello")
|
|
return "Hello"
|