e2ff2ce672
Change-Id: I7fd6399837e45ff48e5f3d47a95192a01d58e125
12 lines
226 B
Go
12 lines
226 B
Go
// Copyright (C) 2020 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
package compensation
|
|
|
|
import "github.com/zeebo/errs"
|
|
|
|
var (
|
|
// Error wraps common errors from this package
|
|
Error = errs.Class("compensation")
|
|
)
|