2018-07-16 14:18:09 +00:00
|
|
|
// +build !foundationdb
|
|
|
|
|
|
|
|
package foundationdb
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
log "github.com/hashicorp/go-hclog"
|
|
|
|
|
2019-04-12 21:54:35 +00:00
|
|
|
"github.com/hashicorp/vault/sdk/physical"
|
2018-07-16 14:18:09 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func NewFDBBackend(conf map[string]string, logger log.Logger) (physical.Backend, error) {
|
|
|
|
return nil, fmt.Errorf("FoundationDB backend not available in this Vault build")
|
|
|
|
}
|