Files
portabase/backend/routes/http/welcome.py
T

9 lines
168 B
Python

from fastapi import APIRouter
router = APIRouter(prefix="/welcome", tags=["api"])
@router.get("/")
async def root():
return {"message": "Hello from portabase!"}