first commit

This commit is contained in:
2026-06-23 09:13:51 +03:00
commit f6c7db328f
103 changed files with 1618 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
from fastapi import APIRouter
from app.models.landcover import LandcoverPathRequest, LandcoverPathResponse
from app.routers.errors import as_501
from app.services import landcover as landcover_service
router = APIRouter()
@router.post("/path", response_model=LandcoverPathResponse)
def path(request: LandcoverPathRequest) -> LandcoverPathResponse:
return as_501(lambda: landcover_service.path_landcover(request))