a786e4249c
Align 2 errs Class messages with the rest of them.
17 lines
323 B
Go
17 lines
323 B
Go
// Copyright (C) 2019 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
package identity // import "storj.io/storj/pkg/identity"
|
|
|
|
import (
|
|
"github.com/zeebo/errs"
|
|
monkit "gopkg.in/spacemonkeygo/monkit.v2"
|
|
)
|
|
|
|
var (
|
|
mon = monkit.Package()
|
|
|
|
// Error is a pkg/identity error
|
|
Error = errs.Class("identity error")
|
|
)
|