You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
511 B

12 months ago
  1. const router = require('express').Router()
  2. // 컨트롤러 파일을 불러옵니다.
  3. const controller = loadModule('users', 'controller');
  4. // 경로를 지정하고 컨트롤러와 연결합니다.
  5. router.post('/', controller.userRegister)
  6. router.post('/authorize/phone', controller.phoneAuth)
  7. router.get('/',controller.getInfo)
  8. router.post('/authorize', controller.authorize)
  9. router.post('/authorize/token', controller.refreshToken)
  10. // 설정한 라우트 설정을 내보냅니다.
  11. module.exports = router