mirror of
https://github.com/lightninglabs/loop
synced 2024-11-11 13:11:12 +00:00
15 lines
331 B
Go
15 lines
331 B
Go
|
// +build !dev
|
||
|
|
||
|
package loopd
|
||
|
|
||
|
import "gopkg.in/macaroon-bakery.v2/bakery"
|
||
|
|
||
|
var (
|
||
|
debugRequiredPermissions = map[string][]bakery.Op{}
|
||
|
debugPermissions []bakery.Op
|
||
|
)
|
||
|
|
||
|
// registerDebugServer is our default debug server registration function, which
|
||
|
// excludes debug functionality.
|
||
|
func (d *Daemon) registerDebugServer() {}
|