UNPKG
@jsmrcaga/keep
Version:
latest (0.5.2)
0.5.2
0.5.1
0.5.0
0.4.0
0.3.0
0.2.0
0.1.0
A simple password manager
github.com/jsmrcaga/keep
jsmrcaga/keep
@jsmrcaga/keep
/
routes
/
api.js
8 lines
(5 loc)
•
189 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
const
express
=
require
(
'express'
);
const
api
= express.
Router
(); api.
use
(
'/'
,
require
(
'./middleware/security'
)); api.
use
(
'/credentials'
,
require
(
'./credentials'
)); module.exports = api;