UNPKG
chainode
Version:
latest (1.0.0)
1.0.0
0.0.1
A private blockchain network based on node.js
github.com/davidemiceli/chainode
davidemiceli/chainode
chainode
/
lib
/
docs
/
src
/
router
/
routes.js
11 lines
(8 loc)
•
174 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
'use strict'
;
// Routes
export
const
Routes
= {
// Dashboard
HOME
: {
path
:
'/'
,
name
:
'home'
},
// Not Found: 404 error
NOTFOUND
: {
path
:
'/404'
,
name
:
'notfound'
} };