pgai / routers /root.py
steveagi's picture
crud tuple -> str
edda3ad
raw
history blame contribute delete
192 Bytes
from fastapi import APIRouter
router = APIRouter(tags=["home"])
@router.get("/")
def root():
return {"message": "hi!"}
@router.get("/pgai")
def pgai():
return {"message": "hi!"}