frostfs-node/cmd/neofs-lens/internal/writecache/root.go

20 lines
310 B
Go
Raw Normal View History

package writecache
import "github.com/spf13/cobra"
var (
vAddress string
vPath string
vOut string
)
// Root contains `write-cache` command definition.
var Root = &cobra.Command{
Use: "write-cache",
Short: "Operations with write-cache",
}
func init() {
Root.AddCommand(listCMD, inspectCMD)
}