24 lines
663 B
Go
24 lines
663 B
Go
package config
|
|
|
|
import (
|
|
"github.com/spf13/viper"
|
|
)
|
|
|
|
// Create mock using:
|
|
//go:generate mockgen -source=interface.go -destination=mock/mock_config.go
|
|
type Interface interface {
|
|
Init() error
|
|
ReadConfig(configFilePath string) error
|
|
Set(key string, value interface{})
|
|
SetDefault(key string, value interface{})
|
|
MergeConfigMap(cfg map[string]interface{}) error
|
|
AllSettings() map[string]interface{}
|
|
IsSet(key string) bool
|
|
Get(key string) interface{}
|
|
GetBool(key string) bool
|
|
GetInt(key string) int
|
|
GetString(key string) string
|
|
GetStringSlice(key string) []string
|
|
UnmarshalKey(key string, rawVal interface{}, decoder ...viper.DecoderConfigOption) error
|
|
}
|