Skip to content

Commit b03771b

Browse files
committed
fix(app.ts): hello world 라우터 삭제
1 parent 7b1ee7b commit b03771b

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/app.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ RegisterRoutes(app);
4343
// swagger 문서 경로
4444
app.use('/docs', swaggerUI.serve, swaggerUI.setup(swaggerJson));
4545

46-
app.use('/', (req, res) => {
47-
res.send('Hello World!');
48-
});
46+
// app.use('/', (req, res) => {
47+
// res.send('Hello World!');
48+
// });
4949

5050
app.listen(process.env.PORT || 3000, () => {
5151
console.log(`Server is running on port ${process.env.PORT || 3000}`);

0 commit comments

Comments
 (0)