MCPcopy
hub / github.com/MiniMax-AI/cli / CommandNode

Interface CommandNode

src/registry.ts:34–37  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

32export type { Command, OptionDef } from './command';
33
34interface CommandNode {
35 command?: Command;
36 children: Map<string, CommandNode>;
37}
38
39class CommandRegistry {
40 private root: CommandNode = { children: new Map() };

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected