lnd/kvdb/kvdb_no_postgres.go

21 lines
410 B
Go
Raw Normal View History

2021-11-08 12:00:58 +01:00
//go:build !kvdb_postgres
2021-07-16 18:07:30 +02:00
// +build !kvdb_postgres
package kvdb
import (
"errors"
"github.com/lightningnetwork/lnd/kvdb/postgres"
)
const PostgresBackend = false
func NewPostgresFixture(dbName string) (postgres.Fixture, error) {
return nil, errors.New("postgres backend not available")
}
func StartEmbeddedPostgres() (func() error, error) {
return nil, errors.New("postgres backend not available")
}