1// +build !foundationdb
2
3package foundationdb
4
5import (
6	"fmt"
7
8	log "github.com/hashicorp/go-hclog"
9
10	"github.com/hashicorp/vault/sdk/physical"
11)
12
13func NewFDBBackend(conf map[string]string, logger log.Logger) (physical.Backend, error) {
14	return nil, fmt.Errorf("FoundationDB backend not available in this Vault build")
15}
16