mirror of
https://github.com/Ai-hack-MAGNUM-OPUS/backend.git
synced 2024-11-22 16:26:34 +03:00
11 lines
186 B
Python
11 lines
186 B
Python
from celery import shared_task
|
|
from uuid import uuid4
|
|
|
|
from checker.models import Docx
|
|
|
|
|
|
@shared_task(name="process_file")
|
|
def process_file(file: uuid4):
|
|
print(file)
|
|
return file
|