11 lines
286 B
Python
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.") |