10 lines
174 B
Go
Raw Normal View History

2024-08-10 23:52:09 +07:00
package config
type FeatureToggle struct {
LoggerEnabled bool `mapstructure:"logger_enabled"`
}
func (f *FeatureToggle) IsLoggerEnabled() bool {
return f.LoggerEnabled
}