0
0
mirror of https://github.com/honojs/hono.git synced 2024-11-25 13:19:30 +01:00
hono/deno_dist/hono.ts

21 lines
652 B
TypeScript
Raw Normal View History

import { HonoBase } from './hono-base.ts'
import { RegExpRouter } from './router/reg-exp-router/index.ts'
import { SmartRouter } from './router/smart-router/index.ts'
import { TrieRouter } from './router/trie-router/index.ts'
import type { Env, Schema } from './types.ts'
2022-07-02 08:09:45 +02:00
export class Hono<
E extends Env = Env,
S extends Schema = {},
BasePath extends string = '/'
> extends HonoBase<E, S, BasePath> {
constructor(init: Partial<Pick<Hono, 'router' | 'getPath'> & { strict: boolean }> = {}) {
super(init)
this.router =
init.router ??
new SmartRouter({
routers: [new RegExpRouter(), new TrieRouter()],
})
2022-07-02 08:09:45 +02:00
}
}