• This project
    • Loading...
  • Sign in

박선진 / video-emergency-detection

%ea%b7%b8%eb%a6%bc1
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 3
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • video-emergency-detection
  • Back-end
  • apiRouter.js
  • 박선진's avatar
    Back-end/ 라우터, 서버 js 분리 · f6a5bbf3
    f6a5bbf3
    박선진 authored 2020-06-21 16:32:46 +0900
apiRouter.js 191 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
const express = require('express');

const router = express.Router();



router.get('/', function(req,res) {

  res.send({greeting: 'Hello React x Node.js'});

});



module.exports = router;