mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
11 lines
224 B
Go
11 lines
224 B
Go
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
|
|
}
|