13 lines
484 B
TypeScript
13 lines
484 B
TypeScript
import {PARTNERS} from "@/shared/constants/apiEndpoints";
|
|
import {GET} from "@/shared/api/apiClient";
|
|
import {GetPartnersResponse} from "@/shared/types/partners";
|
|
|
|
export const getPartners = async (): Promise<GetPartnersResponse> => {
|
|
const res = await GET<GetPartnersResponse>(PARTNERS);
|
|
return res.data;
|
|
}
|
|
|
|
export const getPartnerById = async (id: number): Promise<GetPartnersResponse> => {
|
|
const res = await GET<GetPartnersResponse>(`${PARTNERS}/${id}`);
|
|
return res.data;
|
|
} |