mirror of
https://github.com/clearlinux/uwsgi.git
synced 2026-09-05 21:21:53 +00:00
12 lines
183 B
Python
12 lines
183 B
Python
from tasksconsumer import enqueue
|
|
|
|
def application(env, sr):
|
|
|
|
sr('200 OK', [('Content-Type','text/html')])
|
|
|
|
enqueue(queue='fast', pippo='pluto')
|
|
|
|
return "Task enqueued"
|
|
|
|
|