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

9 lines
168 B
Python
Raw Normal View History

2024-10-27 11:51:53 +01:00
from fastapi import APIRouter
router = APIRouter(prefix="/welcome", tags=["api"])
@router.get("/")
async def root():
return {"message": "Hello from portabase!"}