File size: 195 Bytes
f6d320c
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
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;