We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f5863f commit 54e64f1Copy full SHA for 54e64f1
src/index.ts
@@ -2,7 +2,6 @@ import type { ApiError, HonoContext } from "./types";
2
import { OpenAPIHono } from "@hono/zod-openapi";
3
import { apiReference } from "@scalar/hono-api-reference";
4
import { env } from "hono/adapter";
5
-import { showRoutes } from "hono/dev";
6
import { HTTPException } from "hono/http-exception";
7
import { buildOpenApiConfig } from "./openapi";
8
import { GATEWAY_GITHUB_ROUTER } from "./routes/gateway_github";
@@ -104,6 +103,4 @@ app.notFound(async (c) => {
104
103
} satisfies ApiError, 404);
105
});
106
107
-showRoutes(app);
108
-
109
export default app;
0 commit comments