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