index.ts 107 Bytes
Newer Older
Yoon, Daeki's avatar
Yoon, Daeki committed
1
2
3
4
5
import app from "./app";

app.listen(3000, () => {
  console.log(`server is running on port ${3000}`);
});