10 lines
127 B
TypeScript
Raw Normal View History

2024-11-12 19:15:13 +07:00
import api from "@/lib/api";
const authRepo = {
getUser() {
return api("/auth/user");
},
};
export default authRepo;