16 lines
284 B
Python
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: ...
|