// =========================
// SITEMAP USERS
// =========================

if (
  url.pathname === "/sitemap-users.xml"
) {

  const response =
    await fetch(
      "https://api-biolink.lebahhack.workers.dev/sitemap-users.xml"
    );

  return new Response(
    await response.text(),
    {
      headers:{
        "Content-Type":"application/xml"
      }
    }
  );

}
