UNPKG

convex

Version:

Client for the Convex Cloud

13 lines (11 loc) 304 B
import { Auth } from "../authentication.js"; import { performAsyncSyscall } from "./syscall.js"; export function setupAuth(requestId: string): Auth { return { getUserIdentity: async () => { return await performAsyncSyscall("1.0/getUserIdentity", { requestId, }); }, }; }