1
2
3
4
5
6
7
8
9
import { blobGetJson } from "https://esm.town/v/andreterron/blobGetJson";
import { blobSetJson } from "https://esm.town/v/andreterron/blobSetJson";
export const blobTest = await (async () => {
const json = { "hello": "val town 2" };
await blobSetJson("blob_test", json);
const result = await blobGetJson("blob_test");
return result;
})();