jarvis-cloud / backend /routes /config_routes.py
Jarvis2345's picture
Squash history — remove all prior commits (secret hygiene, S4)
a31f556
Raw
History Blame
203 Bytes
from fastapi import APIRouter
router = APIRouter()
@router.get("/xr_key")
async def get_xr_key():
return {"key": "mock_key"}
@router.get("/all")
async def get_all_config():
return {}