1
0
Fork 0
mirror of https://github.com/chrislusf/seaweedfs synced 2024-06-22 10:34:35 +02:00
seaweedfs/weed/shell/commands.go

29 lines
451 B
Go

package shell
import (
"github.com/chrislusf/seaweedfs/weed/wdclient"
"google.golang.org/grpc"
"io"
)
type ShellOptions struct {
Masters *string
GrpcDialOption grpc.DialOption
}
type commandEnv struct {
env map[string]string
masterClient *wdclient.MasterClient
option ShellOptions
}
type command interface {
Name() string
Help() string
Do([]string, *commandEnv, io.Writer) error
}
var (
commands = []command{}
)