import { app } from "./src/app"; // app.listen(4312, ()=> console.log(`The Server is running.`)) // 启动服务器 const port = 8000; app.listen(port, () => console.log('running...'));