1import { latticeHandshakeHandler } from "@/lib/handlers/latticeHandshake"; 2import type { Route } from "@/lib/types/routes"; 3 4export const handshakeRoute: Route = { 5 method: "POST", 6 handler: latticeHandshakeHandler, 7};