Additional help content for CLI command

This commit is contained in:
Michael Klishin 2019-03-19 20:37:26 +03:00
parent fba4174074
commit bee412f6b9
1 changed files with 5 additions and 1 deletions

View File

@ -20,7 +20,8 @@
-export([formatter/0, scopes/0, switches/0, aliases/0,
usage/0, usage_additional/0, banner/2,
validate/2, merge_defaults/2, run/2, output/2, description/0]).
validate/2, merge_defaults/2, run/2, output/2, description/0,
help_section/0]).
formatter() -> 'Elixir.RabbitMQ.CLI.Formatters.Table'.
@ -31,6 +32,9 @@ aliases() -> [{'V', verbose}].
description() -> <<"Lists STOMP connections on the target node">>.
help_section() ->
{plugin, stomp}.
validate(Args, _) ->
case 'Elixir.RabbitMQ.CLI.Ctl.InfoKeys':validate_info_keys(Args,
?INFO_ITEMS) of