decentralised message store
1import type { Route } from "@/lib/types/routes"; 2 3export const indexRoute: Route = { 4 method: "GET", 5 handler: () => { 6 return new Response("this is a gemstone systems shard", { 7 headers: { "content-type": "text/plain; charset=utf-8" }, 8 }); 9 }, 10};