f833289e1b
By separating Server it allows Peers to directly embed the server and provide customizations and hooks into rest of the services. Change-Id: Ic1d68740fd494d2f82c1739bd990849c561b912b
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")
|