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