Variable defaultHttpRouterAdapterConst

defaultHttpRouterAdapter: SmartRouter<RouterEntry> = ...

A pre-configured default Hono router adapter combining RegExpRouter and TrieRouter via SmartRouter.

SmartRouter automatically selects the best matching router for each route, providing optimized routing performance across different URL patterns.

new SmartRouter({
routers: [new RegExpRouter(), new TrieRouter()],
})

IMPORT_PATH: "@daiso-tech/core/http-router"