import { http } from "@/http/http";
import type { CurrentUserResponseData } from './types';
/** 获取当前登录用户详情 */
export async function getCurrentUserApi() {
return await http.get<CurrentUserResponseData>("users/me");
}