You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be useful to have the ability to prefix all commands defined in a ShellComponent.
For instance:
@ShellComponent(prefix = "backend")
public class BackendCommands {
@ShellMethod("Connect to the backend.")
public void connect(String token) throws Exception {
...
}
}
This would result in a "backend.connect" command.
A prefix ability would allow more consistency in command naming. For instance, you could also have "db.connect" and "kibana.connect" commands. Furthermore, using command line completion after typing the "backend" prefix would give you a nice overview of all backend related commands.
The text was updated successfully, but these errors were encountered:
Uh oh!
There was an error while loading. Please reload this page.
It would be useful to have the ability to prefix all commands defined in a ShellComponent.
For instance:
This would result in a "backend.connect" command.
A prefix ability would allow more consistency in command naming. For instance, you could also have "db.connect" and "kibana.connect" commands. Furthermore, using command line completion after typing the "backend" prefix would give you a nice overview of all backend related commands.
The text was updated successfully, but these errors were encountered: