Files
RSSHub/lib/v2/qweather/router.js
Rein-Ou 0a29a7c4e8 feat(route) add qweather/now (#9413)
* qweather_now

* now

* pubDate fix

* timezone

* parseDate
2022-03-29 21:29:07 +08:00

5 lines
148 B
JavaScript

module.exports = function (router) {
router.get('/3days/:location', require('./3days'));
router.get('/now/:location', require('./now'));
};