Joey / src /controllers /root-controller.ts
yuanjiajun
feat: ε˜ι‡
f6d320c
raw
history blame contribute delete
195 Bytes
import { Context } from 'koa';
import Router from 'koa-router';
const router = new Router();
router.get('/', async (ctx: Context) => {
ctx.body = 'Hello, World!';
});
export default router;