import axiosInstance from '@/configs/axios.config';
import { API_ENDPOINTS } from '@/constants';
import type { ApiResponse, Plan } from '@/types';

export const planService = {
  getPlans: async (): Promise<ApiResponse<Plan[]>> => {
    const response = await axiosInstance.get<ApiResponse<Plan[]>>(API_ENDPOINTS.PLANS);
    return response.data;
  },
};
