forked from TrueCloudLab/frostfs-node
Dmitrii Stepanov
8180a0664f
Badger implementation isn't tested and works not well, but requires human resources to maintain. Signed-off-by: Dmitrii Stepanov <d.stepanov@yadro.com>
21 lines
315 B
Go
21 lines
315 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)
|
|
}
|