Files
bigwo/mcp-server-ssh/node_modules/hono/dist/preset/tiny.js

13 lines
284 B
JavaScript
Raw Normal View History

2026-03-12 12:47:56 +08:00
// src/preset/tiny.ts
import { HonoBase } from "../hono-base.js";
import { PatternRouter } from "../router/pattern-router/index.js";
var Hono = class extends HonoBase {
constructor(options = {}) {
super(options);
this.router = new PatternRouter();
}
};
export {
Hono
};