Merge branch 'develop' into swn

This commit is contained in:
tamaina 2022-01-16 18:03:00 +09:00
commit 1750a19e0c
224 changed files with 3675 additions and 10139 deletions

View file

@ -396,9 +396,6 @@ router.get('/cli', async ctx => {
const override = (source: string, target: string, depth: number = 0) =>
[, ...target.split('/').filter(x => x), ...source.split('/').filter(x => x).splice(depth)].join('/');
router.get('/othello', async ctx => ctx.redirect(override(ctx.URL.pathname, 'games/reversi', 1)));
router.get('/reversi', async ctx => ctx.redirect(override(ctx.URL.pathname, 'games')));
router.get('/flush', async ctx => {
await ctx.render('flush');
});