10 lines
210 B
Go
10 lines
210 B
Go
|
// Copyright (C) 2020 Storj Labs, Inc.
|
||
|
// See LICENSE for copying information.
|
||
|
|
||
|
package debug
|
||
|
|
||
|
import "github.com/zeebo/errs"
|
||
|
|
||
|
// Error is default error class for debug package.
|
||
|
var Error = errs.Class("debug")
|