UNPKG
whalesong
Version:
latest (0.6.1)
0.6.1
0.6.0
0.5.2
0.5.1
0.5.0
0.4.4
0.4.3
0.4.2
0.4.1
0.4.0
0.3.0
0.2.0
0.1.1
Distributed container registry built on hypercores and IPFS
github.com/zozs/whalesong
zozs/whalesong
whalesong
/
lib
/
debug-routes.js
10 lines
(8 loc)
•
226 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
export function
addDebugRoutes
(
router, myBaseUrl, myPubKey
)
{ router.
get
(
'/whalesong/mypubkey'
,
async
(ctx) => { ctx.body = myPubKey }) router.
get
(
'/whalesong/url'
,
async
(ctx) => { ctx.body = myBaseUrl }) }