mirror of
https://github.com/honojs/hono.git
synced 2024-11-29 17:46:30 +01:00
68808453d5
* refactor: refactored `hono-base` * denoify
16 lines
453 B
TypeScript
16 lines
453 B
TypeScript
import { HonoBase } from '../hono-base.ts'
|
|
import type { HonoOptions } from '../hono-base.ts'
|
|
import { PatternRouter } from '../router/pattern-router/index.ts'
|
|
import type { Env, Schema } from '../types.ts'
|
|
|
|
export class Hono<
|
|
E extends Env = Env,
|
|
S extends Schema = {},
|
|
BasePath extends string = '/'
|
|
> extends HonoBase<E, S, BasePath> {
|
|
constructor(options: HonoOptions<E> = {}) {
|
|
super(options)
|
|
this.router = new PatternRouter()
|
|
}
|
|
}
|