mirror of
https://github.com/basketikun/infinite-canvas.git
synced 2026-08-02 15:01:14 +08:00
7 lines
202 B
JavaScript
7 lines
202 B
JavaScript
#!/usr/bin/env node
|
|
import { startHttpServer } from "./http-server.js";
|
|
import { startMcpServer } from "./mcp-server.js";
|
|
|
|
if (process.argv[2] === "mcp") await startMcpServer();
|
|
else startHttpServer();
|