mirror of
https://github.com/task-17-lct/backend.git
synced 2025-02-22 14:00:31 +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
|
|
...
|