aboutsummaryrefslogtreecommitdiff
path: root/weed/util/config.go
blob: 77cab30191e4a03a8e2d5f6b35ba8b5b8ea6b8e9 (plain)
1
2
3
4
5
6
7
8
9
10
package util

type Configuration interface {
	GetString(key string) string
	GetBool(key string) bool
	GetInt(key string) int
	GetInt64(key string) int64
	GetFloat64(key string) float64
	GetStringSlice(key string) []string
}