MCPcopy Create free account
hub / github.com/CreminiAI/skillpack / getTelegramBotCommands

Function getTelegramBotCommands

src/runtime/commands/index.ts:89–97  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

87 * Only includes visible commands.
88 */
89export function getTelegramBotCommands(): Array<{
90 command: string;
91 description: string;
92}> {
93 return COMMAND_REGISTRY.filter((cmd) => cmd.visibleInHelp).map((cmd) => ({
94 command: cmd.command,
95 description: cmd.description,
96 }));
97}

Callers 1

startMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected