94a09ce20b
Change-Id: I93b86c9fb3398c5d3c9121b8859dad1c615fa23a
12 lines
227 B
Go
12 lines
227 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")
|
|
)
|