6576d31b29
* Signature verification * code review comments & lint warnings
12 lines
248 B
Go
12 lines
248 B
Go
// Copyright (C) 2018 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
package bwagreement
|
|
|
|
import (
|
|
"github.com/zeebo/errs"
|
|
)
|
|
|
|
// BwAgreementError the default bwagreement errs class
|
|
var BwAgreementError = errs.Class("bwagreement error")
|