mirror of
https://github.com/honojs/hono.git
synced 2024-12-01 10:51:01 +00:00
5c1f7f033c
* fix(hono/quick): use SmartRouter * denoify
19 lines
591 B
TypeScript
19 lines
591 B
TypeScript
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'
|
|
import type { Env } from '../types.ts'
|
|
|
|
export class Hono<E extends Env = Env, S = {}, BasePath extends string = '/'> extends HonoBase<
|
|
E,
|
|
S,
|
|
BasePath
|
|
> {
|
|
constructor(init: Partial<Pick<Hono, 'getPath'> & { strict: boolean }> = {}) {
|
|
super(init)
|
|
this.router = new SmartRouter({
|
|
routers: [new LinearRouter(), new TrieRouter()],
|
|
})
|
|
}
|
|
}
|