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
|
||
|
}
|