import { Result } from "@shared/utils/result.ts"; class ClientApi { constructor(path: string, method: string) {} validate(res: Response): ResultAsync { const body = await res.json(); } } class ServerApi { }