1
0
Fork 0
mirror of https://github.com/chrislusf/seaweedfs synced 2024-06-02 16:50:25 +02:00
seaweedfs/weed/shell/command_mq_topic_list.go
2022-07-28 23:24:38 -07:00

29 lines
473 B
Go

package shell
import (
"fmt"
"io"
)
func init() {
Commands = append(Commands, &commandMqTopicList{})
}
type commandMqTopicList struct {
}
func (c *commandMqTopicList) Name() string {
return "mq.topic.list"
}
func (c *commandMqTopicList) Help() string {
return `print out all topics`
}
func (c *commandMqTopicList) Do(args []string, commandEnv *CommandEnv, writer io.Writer) (err error) {
fmt.Fprintf(writer, "%s\n", commandEnv.option.Directory)
return nil
}