2022-08-23 13:45:24 +00:00
|
|
|
package writecache
|
|
|
|
|
2022-08-24 12:09:52 +00:00
|
|
|
import (
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
)
|
2022-08-23 13:45:24 +00:00
|
|
|
|
|
|
|
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() {
|
2024-08-19 15:02:11 +00:00
|
|
|
Root.AddCommand(listCMD, inspectCMD, tuiCMD)
|
2022-08-23 13:45:24 +00:00
|
|
|
}
|