0
0
mirror of https://github.com/honojs/hono.git synced 2024-12-01 11:51:01 +01:00
hono/deno_dist/preset/tiny.ts
2023-05-09 22:15:10 +09:00

15 lines
343 B
TypeScript

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