mirror of
https://github.com/task-17-lct/backend.git
synced 2024-11-24 02:33:44 +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
|
||
|
...
|