import { fetchGeolocation } from "https://esm.town/v/mattrossman/geolocation/main.ts"; export default async function (req: Request) { const geolocation = await fetchGeolocation(req); return new Response(`Hello from ${geolocation.city}`); }