mirror of
https://github.com/abhigyanpatwari/GitNexus.git
synced 2026-09-20 00:11:37 +00:00
9 lines
199 B
TypeScript
9 lines
199 B
TypeScript
import { createServer } from '../server/api.js';
|
|
|
|
export const serveCommand = async (options?: { port?: string }) => {
|
|
const port = Number(options?.port ?? 4747);
|
|
await createServer(port);
|
|
};
|
|
|
|
|
|
|