Files
2026-06-06 13:00:01 +03:00

16 lines
284 B
Python

"""Client sync endpoints (offline-first event log)."""
from typing import Any
from fastapi import APIRouter
router = APIRouter(prefix="/sync", tags=["sync"])
@router.get("/changes")
async def get_changes() -> Any: ...
@router.post("/push")
async def push_changes() -> Any: ...