1
2
3
4
5
6
7
import { blob } from "https://esm.town/v/std/blob?v=11";
export default async function(req: Request): Promise<Response> {
const count = (await blob.getJSON("blobCounter") ?? 0) + 1;
await blob.setJSON("blobCounter", count);
return Response.json(count);
}