import { httpJson } from "./http" export async function sendForgotPasswordCode(email: string): Promise { await httpJson("/api/v1/auth/forgot-password/send", { method: "POST", json: { email }, }) }