X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/3aaefcb3c76ff470b475d950398d01255e87712a..9f1850a385ee8e0a011474de19ee6507b0b168f3:/cmd/arvados-client/cmd.go diff --git a/cmd/arvados-client/cmd.go b/cmd/arvados-client/cmd.go index 47fcd5ad7d..19d13437c8 100644 --- a/cmd/arvados-client/cmd.go +++ b/cmd/arvados-client/cmd.go @@ -11,6 +11,7 @@ import ( "git.arvados.org/arvados.git/lib/cmd" "git.arvados.org/arvados.git/lib/costanalyzer" "git.arvados.org/arvados.git/lib/deduplicationreport" + "git.arvados.org/arvados.git/lib/diagnostics" "git.arvados.org/arvados.git/lib/mount" ) @@ -54,9 +55,14 @@ var ( "virtual_machine": cli.APICall, "workflow": cli.APICall, - "mount": mount.Command, - "deduplication-report": deduplicationreport.Command, + "connect-ssh": connectSSHCommand{}, "costanalyzer": costanalyzer.Command, + "deduplication-report": deduplicationreport.Command, + "diagnostics": diagnostics.Command{}, + "logs": logsCommand{}, + "mount": mount.Command, + "shell": shellCommand{}, + "sudo": sudoCommand{}, }) )