import { callApi } from "../api/index.jsx";
import { constants as c } from "../constants";

const allBanner = () => {
  return callApi(`/customer/${c.STORE_CODE}/home_web/banners`, "get");
};

export const banner = {
  allBanner,
};