mirror of
https://github.com/khairul169/vaulterm.git
synced 2025-04-28 16:49:39 +07:00
10 lines
127 B
TypeScript
10 lines
127 B
TypeScript
import api from "@/lib/api";
|
|
|
|
const authRepo = {
|
|
getUser() {
|
|
return api("/auth/user");
|
|
},
|
|
};
|
|
|
|
export default authRepo;
|