frostfs-node/cmd/frostfs-lens/internal/writecache/root.go
Aleksey Savchuk 371d97f61a [#1223] lens/tui: Add TUI app for write cache
Signed-off-by: Aleksey Savchuk <a.savchuk@yadro.com>
2024-09-05 08:03:52 +00:00

21 lines
323 B
Go

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, tuiCMD)
}