caremyway-client/src/api/user.api.js

6 lines
128 B
JavaScript
Raw Normal View History

import { get } from "./baseApi";
export function getSelfUser() {
return get("/user/").then(resp => Promise.resolve(resp));
}