From c3403ba724f3449d3b93cd417c09e4e0b6726382 Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Thu, 30 Jan 2025 21:03:42 -0600 Subject: [PATCH] Make AppController accept a path parameter --- src/app.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app.ts b/src/app.ts index 8bdeccf3..18b0fb96 100644 --- a/src/app.ts +++ b/src/app.ts @@ -166,7 +166,7 @@ export interface AppEnv extends HonoEnv { type AppContext = Context; type AppMiddleware = MiddlewareHandler; -type AppController = Handler>; +type AppController

= Handler>; const app = new Hono({ strict: false });