mirror of
https://github.com/imjasonh/terraform-playground
synced 2026-07-06 23:12:22 +00:00
6 lines
224 B
JavaScript
6 lines
224 B
JavaScript
addEventListener("fetch", (event) => {
|
|
console.log("Hello from the service worker!");
|
|
let value = KV.get("foo");
|
|
event.respondWith(new Response(value,
|
|
{ headers: { "content-type": "text/plain" } }));
|
|
});
|