storj/pkg/identity/setup.go
2019-01-26 15:59:53 +01:00

14 lines
239 B
Go

// Copyright (C) 2019 Storj Labs, Inc.
// See LICENSE for copying information.
package identity
import (
"github.com/zeebo/errs"
)
var (
// ErrSetup is returned when there's an error with setup
ErrSetup = errs.Class("setup error")
)