/** * LEGACY: re-export shim. * * The server implementation has been moved to server/ sub-modules: * server/server.ts — HTTP bootstrap, TLS, middleware, LEGACY HTML routes * server/upgrade.ts — WebSocket upgrade routing per session/topic * server/types.ts — shared WS + RemoteServer type definitions * server/routes/ — route modules (populated by T-1.5/T-1.6/T-1.7) * * This shim is kept so that the existing import in index.ts * (`import { startServer } from "./server.js"`) continues to resolve * without modification. It will be removed once all consumers have been * updated to import directly from server/ sub-modules. */ export { startServer } from "./server/server.js"; // LEGACY: re-exports for backward-compatibility export type { RemoteServer } from "./server/types.js";