12 lines
358 B
Python
12 lines
358 B
Python
from app.workers.celery_app import celery_app
|
|
|
|
|
|
@celery_app.task(name="coverage.compute")
|
|
def compute_coverage(job_id: str) -> dict[str, str]:
|
|
return {"job_id": job_id, "status": "not_implemented"}
|
|
|
|
|
|
@celery_app.task(name="viewshed.compute")
|
|
def compute_viewshed(job_id: str) -> dict[str, str]:
|
|
return {"job_id": job_id, "status": "not_implemented"}
|