import { BASE_URL, fetch } from "../../constants.js";
import { AVAILABLE_BOOKS } from "./constants.js";

async function fetchAvailableBooks() {
  const url = new URL(AVAILABLE_BOOKS, BASE_URL);
  const res = await fetch(url.toString());
  const json = await res.json();

  return json;
}

export { fetchAvailableBooks };
