File size: 481 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
import type { ResumeDto } from "@reactive-resume/dto";
import { axios } from "@/client/libs/axios";
export const findResumeById = async (data: { id: string }) => {
const response = await axios.get<ResumeDto>(`/resume/${data.id}`);
return response.data;
};
export const findResumeByUsernameSlug = async (data: { username: string; slug: string }) => {
const response = await axios.get<ResumeDto>(`/resume/public/${data.username}/${data.slug}`);
return response.data;
};
|