feat(route): add 白话区块链 (#9234)

* feat(route): add 白话区块链

* Update lib/v2/hellobtc/information.js

Co-authored-by: Tony <TonyRL@users.noreply.github.com>

* Update lib/v2/hellobtc/news.js

Co-authored-by: Tony <TonyRL@users.noreply.github.com>

* Update lib/v2/hellobtc/information.js

Co-authored-by: Tony <TonyRL@users.noreply.github.com>

* Update lib/v2/hellobtc/kepu.js

Co-authored-by: Tony <TonyRL@users.noreply.github.com>

* Update lib/v2/hellobtc/topic.js

Co-authored-by: Tony <TonyRL@users.noreply.github.com>

* Update lib/v2/hellobtc/topic.js

Co-authored-by: Tony <TonyRL@users.noreply.github.com>

* fix(route): add timezone

Co-authored-by: Tony <TonyRL@users.noreply.github.com>
This commit is contained in:
Fatpandac
2022-03-03 19:50:28 +08:00
committed by GitHub
parent 07c5bfee23
commit 25ea6fe393
8 changed files with 308 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
module.exports = function (router) {
router.get('/information/:channel?', require('./information'));
router.get('/news', require('./news'));
router.get('/kepu/:channel?', require('./kepu'));
router.get('/topic/:id', require('./topic'));
};