index.ts 239 B

12345678910111213
  1. /**
  2. * Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
  3. * SPDX-License-Identifier: MIT
  4. */
  5. import { createServer } from '@server/index';
  6. async function main() {
  7. const server = await createServer();
  8. server.start();
  9. }
  10. main();