import { HonoBase } from './hono-base.ts' import { PatternRouter } from './router/pattern-router/index.ts' import type { Env } from './types.ts' export class Hono extends HonoBase< E, S, BasePath > { constructor() { super() this.router = new PatternRouter() } }