mirror of
https://github.com/Portabase/portabase.git
synced 2026-07-14 11:16:13 +02:00
9 lines
167 B
Python
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!"}
|