mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-03-06 18:37:11 +01:00
12 lines
229 B
Go
12 lines
229 B
Go
|
// +build !debug
|
||
|
|
||
|
package hodl
|
||
|
|
||
|
// Config is an empty struct disabling command line hodl flags in production.
|
||
|
type Config struct{}
|
||
|
|
||
|
// Mask in production always returns MaskNone.
|
||
|
func (c *Config) Mask() Mask {
|
||
|
return MaskNone
|
||
|
}
|