56ace481c1
see also
3ee9780df1
and
https://golang.org/cmd/go/#hdr-Remote_import_paths
and
https://golang.org/cmd/go/#hdr-Import_path_checking
Change-Id: I2ac906b1a1befde21edbcfc9b0a1b6a4863520da
17 lines
327 B
Go
17 lines
327 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("pkg/identity error")
|
|
)
|