influxdb/cmd/store/help/help.go

41 lines
727 B
Go

// Package help contains the help for the store command.
package help
import (
"fmt"
"io"
"os"
"strings"
)
// Command displays help for command-line sub-commands.
type Command struct {
Stdout io.Writer
}
// NewCommand returns a new instance of Command.
func NewCommand() *Command {
return &Command{
Stdout: os.Stdout,
}
}
// Run executes the command.
func (cmd *Command) Run(args ...string) error {
fmt.Fprintln(cmd.Stdout, strings.TrimSpace(usage))
return nil
}
const usage = `
Usage: store [[command] [arguments]]
The commands are:
query queries data.
help display this help message
"help" is the default command.
Use "store [command] -help" for more information about a command.
`