import { userFetch } from "."; import { User, UserStats } from "../types/user"; export const getCurrentUser = async () => { return await userFetch("/me"); }; export const getCurrentUserStats = async () => { return await userFetch("/me/stat"); };