aboutsummaryrefslogtreecommitdiff
path: root/weed/shell/command.go
blob: e1a820ff8f68c196a94f92365153078c84732eb1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package shell

import "io"

type command interface {
	Name() string
	Help() string
	Do([]string, *CommandEnv, io.Writer) error
	IsResourceHeavy() bool
}

var (
	Commands = []command{}
)