e1ba3931ec
this allows for setting $STORJ_METAINFO_POSTGRESQL_USE_ALT=yes if you want to use the cockroachkv implementation for metainfo against postgres Change-Id: I0c9458c83fd67ee63ef4a78351e64a80a0647408
12 lines
228 B
Go
12 lines
228 B
Go
// Copyright (C) 2019 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
package postgreskv2
|
|
|
|
import (
|
|
"github.com/zeebo/errs"
|
|
)
|
|
|
|
// Error is the default postgreskv errs class
|
|
var Error = errs.Class("postgreskv2 error")
|