0
0
mirror of https://github.com/honojs/hono.git synced 2024-12-01 10:51:01 +00:00
hono/deno_dist/preset/quick.ts

19 lines
591 B
TypeScript
Raw Normal View History

2023-05-09 13:15:10 +00:00
import { HonoBase } from '../hono-base.ts'
import { LinearRouter } from '../router/linear-router/index.ts'
import { SmartRouter } from '../router/smart-router/index.ts'
import { TrieRouter } from '../router/trie-router/index.ts'
2023-05-09 13:15:10 +00:00
import type { Env } from '../types.ts'
export class Hono<E extends Env = Env, S = {}, BasePath extends string = '/'> extends HonoBase<
2023-05-09 13:15:10 +00:00
E,
S,
BasePath
> {
constructor(init: Partial<Pick<Hono, 'getPath'> & { strict: boolean }> = {}) {
super(init)
this.router = new SmartRouter({
routers: [new LinearRouter(), new TrieRouter()],
})
2023-05-09 13:15:10 +00:00
}
}