30 lines
557 B
Go
30 lines
557 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
package command
|
|
|
|
import "github.com/mitchellh/cli"
|
|
|
|
type PluginCommand struct {
|
|
Meta
|
|
}
|
|
|
|
func (c *PluginCommand) Help() string {
|
|
helpText := `
|
|
Usage nomad plugin status [options] [plugin]
|
|
|
|
This command groups subcommands for interacting with plugins.
|
|
`
|
|
return helpText
|
|
}
|
|
|
|
func (c *PluginCommand) Synopsis() string {
|
|
return "Inspect plugins"
|
|
}
|
|
|
|
func (c *PluginCommand) Name() string { return "plugin" }
|
|
|
|
func (c *PluginCommand) Run(args []string) int {
|
|
return cli.RunResultHelp
|
|
}
|