2025-02-19 13:21:23 +01:00

11 lines
286 B
Python

from fastapi import APIRouter
router = APIRouter()
@router.post("")
async def create_house():
raise NotImplementedError("This endpoint is not implemented yet.")
@router.get("/all")
async def get_all_houses():
raise NotImplementedError("This endpoint is not implemented yet.")