summaryrefslogtreecommitdiff
path: root/src-migrate/services/promotionProgram.ts
blob: c8c46c653a078a9c9c08a1c17d67dd5e3756bf59 (plain)
1
2
3
4
5
6
7
8
import { IPromotionProgram } from '~/types/promotionProgram';

export const getPromotionProgram = async (
  programId: number
): Promise<{ data: IPromotionProgram }> => {
  const url = `/api/promotion-program/${programId}`;
  return await fetch(url).then((res) => res.json());
};