import axios from "@/config/axios"; export const getProfile = async () => { const { data } = await axios.get("/users/me"); return data; };