decentralised message store

feat: handshake route

serenity f2061115 1a1036d5

Changed files
+2
src
routes
+2
src/routes/index.ts
···
import type { Route, WsRoute } from "@/lib/types/routes";
import { didWebDocRoute } from "@/routes/dot-well-known/did-dot-json/route";
+
import { handshakeRoute } from "@/routes/handshake/route";
import { indexRoute } from "@/routes/route";
export const routes: Record<string, Route | WsRoute> = {
"/": indexRoute,
"/.well-known/did.json": didWebDocRoute,
+
"/handshake": handshakeRoute,
};