mirror of
https://git.hmsn.ink/kospo/helptalk/push.git
synced 2026-03-19 19:05:21 +09:00
10 lines
203 B
JavaScript
10 lines
203 B
JavaScript
var express = require('express');
|
|
var router = express.Router();
|
|
|
|
/* GET users listing. */
|
|
router.get('/', function(req, res, next) {
|
|
res.send('respond with a resource');
|
|
});
|
|
|
|
module.exports = router;
|