decentralised message store

feat: index route

serenity 6076ce72 289bd224

Changed files
+3 -1
src
routes
+3 -1
src/routes/route.ts
···
export const indexRoute: Route = {
method: "GET",
handler: () => {
-
return new Response(JSON.stringify({ hello: "world" }));
+
return new Response("this is a gemstone systems shard", {
+
headers: { "content-type": "text/plain; charset=utf-8" },
+
});
},
};