Donghoon Kim

Clean Project

Showing 1 changed file with 1 additions and 1 deletions
...@@ -17,4 +17,4 @@ app.use(express.static(path.join(__dirname, 'public'))); ...@@ -17,4 +17,4 @@ app.use(express.static(path.join(__dirname, 'public')));
17 app.use('/', indexRouter); 17 app.use('/', indexRouter);
18 app.use('/users', usersRouter); 18 app.use('/users', usersRouter);
19 19
20 -module.exports = app;
...\ No newline at end of file ...\ No newline at end of file
20 +var server = app.listen(3000);
......