mirror of
https://github.com/khairul169/vaulterm.git
synced 2025-06-18 01:29:37 +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;
|