diff options
| author | Chris Lu <chris.lu@uber.com> | 2019-03-16 13:43:16 -0700 |
|---|---|---|
| committer | Chris Lu <chris.lu@uber.com> | 2019-03-16 13:43:16 -0700 |
| commit | 657dd2e6c93c02f46b10dfd43fb6e9b38c025ece (patch) | |
| tree | c23a093382d5ffd0d39dd69b68fb24050daa7f3e /weed/shell/commands.go | |
| parent | b92122b885c8fba189f3c503c17478008806fda7 (diff) | |
| download | seaweedfs-657dd2e6c93c02f46b10dfd43fb6e9b38c025ece.tar.xz seaweedfs-657dd2e6c93c02f46b10dfd43fb6e9b38c025ece.zip | |
add shell command to list all collections
Diffstat (limited to 'weed/shell/commands.go')
| -rw-r--r-- | weed/shell/commands.go | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/weed/shell/commands.go b/weed/shell/commands.go new file mode 100644 index 000000000..4df70ff55 --- /dev/null +++ b/weed/shell/commands.go @@ -0,0 +1,27 @@ +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 +} + +type command interface { + Name() string + Help() string + Do([]string, *commandEnv, io.Writer) error +} + +var ( + commands = []command{} +) |
