RestartToolset triggers a supervisor-driven restart of the named toolset.
(ctx context.Context, name string)
| 250 | |
| 251 | // RestartToolset triggers a supervisor-driven restart of the named toolset. |
| 252 | func (a *App) RestartToolset(ctx context.Context, name string) error { |
| 253 | return a.runtime.RestartToolset(ctx, name) |
| 254 | } |
| 255 | |
| 256 | // CurrentAgentCommands returns the commands for the active agent |
| 257 | func (a *App) CurrentAgentCommands(ctx context.Context) types.Commands { |
nothing calls this directly
no test coverage detected