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

13 years ago
  1. package util
  2. type Configuration interface {
  3. GetString(key string) string
  4. GetBool(key string) bool
  5. GetInt(key string) int
  6. GetInt64(key string) int64
  7. GetFloat64(key string) float64
  8. GetStringSlice(key string) []string
  9. }