You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
224 B
10 lines
224 B
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
|
|
}
|