ResolveCommand converts /command to its prompt text
(ctx context.Context, userInput string)
| 435 | |
| 436 | // ResolveCommand converts /command to its prompt text |
| 437 | func (a *App) ResolveCommand(ctx context.Context, userInput string) string { |
| 438 | return runtime.ResolveCommand(ctx, a.runtime, userInput) |
| 439 | } |
| 440 | |
| 441 | // LookupCommand parses userInput as a /command invocation and returns the |
| 442 | // matching command, the trailing arguments, and whether a match was found. |
no test coverage detected