mirror of
https://github.com/rclone/rclone.git
synced 2024-12-04 22:34:48 +01:00
17 lines
278 B
Go
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")
|
||
|
)
|