@busy-hour/blaze
Version:
<h1 align='center'>🔥 Blaze</h1> <div align='center'> An event driven framework for 🔥 Hono.js </div>
21 lines (20 loc) • 426 B
JavaScript
// src/helpers/dev.ts
import {
getRouterName as honoGetRouterName,
inspectRoutes as honoInspectRoutes,
showRoutes as honoShowRoutes
} from "hono/dev";
function getRouterName(app) {
return honoGetRouterName(app.router);
}
function showRoutes(app) {
return honoShowRoutes(app.router);
}
function inspectRoutes(app) {
return honoInspectRoutes(app.router);
}
export {
getRouterName,
inspectRoutes,
showRoutes
};