import http from "@/utils/request";
// 获取用户信息
export const getUserInfo = () => {
return http({
url:'/api/v1/UserControllers/My',
method:'GET'
})
};