1
2
3
4
5
6
7
8
9
10
import { blob } from "https://esm.town/v/std/blob";
export default async function (req: Request): Promise<Response> {
const data = await blob.getJSON("readme-vals.json");
return Response.json(data, {
headers: { "Content-Type": "application/json" },
});
}