import axios from '@/network/axios';
import { apis } from '@/utils/apis/apis';
import { SuccessResponse } from '@/utils/types/Responses';
import { CountryProps } from './type';

export const getCountries = async () => {
  return await axios.get<SuccessResponse<CountryProps[]>>(
    apis.SHARED.COUNTRIES,
  );
};
