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.
 
 
 
 
 
 

11 lines
230 B

const express = require('express')
const router = express.Router()
// Get a token.
router.get('/api-token-auth', (req, res) => {
res.json({
token: '9944b09199c62bcf9418ad846dd0e4bbdfc6ee4b'
})
})
module.exports = router