Files
portabase/backend/routes/http/api.py
T
2024-10-19 15:55:51 +02:00

9 lines
167 B
Python

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