mirror of
https://github.com/task-17-lct/backend.git
synced 2025-02-18 22:30:33 +03:00
8 lines
101 B
Python
8 lines
101 B
Python
from celery import shared_task
|
|
|
|
|
|
@shared_task
|
|
def run_precalc():
|
|
# TODO: add precal here
|
|
...
|