rclone/vendor/storj.io/common/identity/common.go
2020-05-12 15:56:50 +00:00

17 lines
278 B
Go

// Copyright (C) 2019 Storj Labs, Inc.
// See LICENSE for copying information.
package identity
import (
"github.com/spacemonkeygo/monkit/v3"
"github.com/zeebo/errs"
)
var (
mon = monkit.Package()
// Error is a pkg/identity error
Error = errs.Class("identity error")
)