mirror of
https://github.com/lightningnetwork/lnd.git
synced 2024-11-19 09:53:54 +01:00
12 lines
227 B
Go
12 lines
227 B
Go
// +build !dev
|
|
|
|
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
|
|
}
|