Documentation ¶
Overview ¶
Package configmap provides an abstraction for reading and writing config
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Getter ¶
type Getter interface { // Get should get an item with the key passed in and return // the value. If the item is found then it should return true, // otherwise false. Get(key string) (value string, ok bool) }
Getter provides an interface to get config items
type Map ¶
type Map struct {
// contains filtered or unexported fields
}
Map provides a wrapper around multiple Setter and Getter interfaces.
func (*Map) AddGetters ¶
AddGetters appends multiple getters onto the end of the getters
Click to show internal directories.
Click to hide internal directories.