chore: migrate create user

This commit is contained in:
Steven
2023-11-22 22:58:04 +08:00
parent c0b5070e46
commit c0628ef95b
2 changed files with 10 additions and 12 deletions

View File

@ -44,10 +44,6 @@ export function signout() {
return axios.post("/api/v1/auth/signout");
}
export function createUser(userCreate: UserCreate) {
return axios.post<User>("/api/v1/user", userCreate);
}
export function getMyselfUser() {
return axios.get<User>("/api/v1/user/me");
}