0
0
Fork 0
This commit is contained in:
Xeltica 2020-08-04 20:11:24 +09:00
parent c34f711f0b
commit a51947df76

View file

@ -51,6 +51,10 @@ router.get('/about', async ctx => {
await ctx.render('about');
});
router.get('/teapot', async ctx => {
await die(ctx, 'I\'m teapot', 418);
});
router.get('/miauth', async ctx => {
const session = ctx.query.session as string | undefined;
if (!session) {