mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-24 20:28:06 +02:00
7 lines
171 B
Python
7 lines
171 B
Python
"""Phase 21 — Celery scheduled-task benign control."""
|
|
_NYX_ADAPTER_MARKER = "from celery import shared_task"
|
|
|
|
|
|
def tick(payload):
|
|
_ = payload
|
|
return "accepted"
|