• This project
    • Loading...
  • Sign in

최은석 / ossw-project

%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 0
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • ossw-project
  • server
  • Router
  • test.js
  • 최은석's avatar
    change to react + node · 8d2852f2
    8d2852f2
    최은석 authored 2022-05-30 16:02:54 +0900
test.js 159 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8
const express = require('express');
const router = express.Router();

router.get('/api', (req, res)=>{
  res.send({ test: "hi"});
});

module.exports = router;