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

9 lines
167 B
Python
Raw Normal View History

2024-10-19 15:55:51 +02:00
from fastapi import APIRouter
router = APIRouter(prefix="/api", tags=["api"])
@router.get("/")
async def root():
return {"message": "Hello from backup agent!"}