mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 10:05:18 +00:00
15 lines
304 B
Go
15 lines
304 B
Go
|
//go:build !rocksdb
|
||
|
// +build !rocksdb
|
||
|
|
||
|
package rocksdb
|
||
|
|
||
|
import (
|
||
|
"github.com/spf13/cobra"
|
||
|
)
|
||
|
|
||
|
// RocksDBCmd defines the root command when the rocksdb build tag is not set.
|
||
|
var RocksDBCmd = &cobra.Command{
|
||
|
Use: "rocksdb",
|
||
|
Short: "RocksDB util commands, disabled because rocksdb build tag not set",
|
||
|
}
|