11 lines
307 B
Go
11 lines
307 B
Go
|
package kvdb
|
||
|
|
||
|
import (
|
||
|
_ "github.com/btcsuite/btcwallet/walletdb/bdb" // Import to register backend.
|
||
|
)
|
||
|
|
||
|
// BoltBackendName is the name of the backend that should be passed into
|
||
|
// kvdb.Create to initialize a new instance of kvdb.Backend backed by a live
|
||
|
// instance of bbolt.
|
||
|
const BoltBackendName = "bdb"
|