seaweedfs/weed/util/config.go

11 lines
224 B
Go
Raw Normal View History

2015-03-10 15:20:31 +08:00
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
2012-08-24 11:56:09 +08:00
}