Files
16gagent/.benchmark/inventory/frontend/services/auth.ts
T
2026-06-06 10:40:48 +08:00

11 lines
220 B
TypeScript

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