feat(route): add AtCoder (#8825)

This commit is contained in:
Ethan Shen
2022-01-23 04:05:10 +08:00
committed by GitHub
parent 548136c56a
commit d95705b4db
7 changed files with 220 additions and 0 deletions

4
lib/v2/atcoder/router.js Normal file
View File

@@ -0,0 +1,4 @@
module.exports = function (router) {
router.get('/post/:language?/:keyword?', require('./post'));
router.get('/contest/:language?/:rated?/:category?/:keyword?', require('./contest'));
};