seaweedfs/weed/util/config.go

11 lines
224 B
Go
Raw Normal View History

2015-03-10 07:20:31 +00: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 03:56:09 +00:00
}