박민정

[docs] 서버/클라이언트 폴더로 소스코드를 기능별로 정리

...@@ -78,7 +78,7 @@ app.post('/api/users/login', (req, res) => { ...@@ -78,7 +78,7 @@ app.post('/api/users/login', (req, res) => {
78 .json({loginSuccess: true, userId: user._id}) 78 .json({loginSuccess: true, userId: user._id})
79 }) 79 })
80 }) 80 })
81 - }) 81 + })
82 }) 82 })
83 83
84 84
...@@ -109,4 +109,4 @@ app.get('/api/users/logout', auth, (req, res) => { ...@@ -109,4 +109,4 @@ app.get('/api/users/logout', auth, (req, res) => {
109 109
110 app.listen(port, () => { 110 app.listen(port, () => {
111 console.log(`Example app listening at http://localhost:${port}`) 111 console.log(`Example app listening at http://localhost:${port}`)
112 -}) 112 +})
...\ No newline at end of file ...\ No newline at end of file
......