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.")