// Auto-generated auth service import { api } from "./api"; export function postlogin(data: Record) { return api.post("/api/auth", data); } export function getme() { return api.get("/api/auth"); }