import axiosInstance from "./api";
import { apiUrl } from "./endpoints";

export const getAllDataApi = async () => {
  const res = await axiosInstance.get(apiUrl.getAllData);
  return res.data;
};