···11-const Radix3 = Ant.require('./radix3.cjs');
22-const { html } = Ant.require('./html.cjs');
11+import { html } from './html';
22+import meow from './meow.txt';
33+import { Radix3 } from './radix3';
3445const router = new Radix3();
56···89910Available routes:
1011 GET /
1212+ GET /meow
1113 GET /hello
1214 GET /status
1315 GET /users/:id
···1517 GET /files/*path
1618 GET /api/v1/users
1719 GET /api/v2/demo`);
2020+});
2121+2222+router.insert('/meow', async c => {
2323+ return c.res.body(meow);
1824});
19252026router.insert('/hello', async c => {