index.ts 296 B

12345678910
  1. import { config } from 'dotenv';
  2. import { startMobileChatServer } from './apps/mobile/chat/server.js';
  3. import { startPcServer } from './apps/pc/health/server.js';
  4. import { startQiweiServer } from './apps/qiwei/server.js';
  5. config();
  6. startPcServer();
  7. startMobileChatServer();
  8. startQiweiServer();