storj/pkg/debug/common.go
Egon Elbre f833289e1b pkg/debug: separate debug endpoints to a server
By separating Server it allows Peers to directly embed the server
and provide customizations and hooks into rest of the services.

Change-Id: Ic1d68740fd494d2f82c1739bd990849c561b912b
2020-01-29 16:30:31 -05:00

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")