17 lines
318 B
Go
17 lines
318 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"git.purser.it/roypur/envconf"
|
|
)
|
|
|
|
func main() {
|
|
conf := envconf.NewConfig()
|
|
conf.Define("this_is_a_map", envconf.TypeInt)
|
|
conf.DefineMap("test_map", envconf.TypeInt)
|
|
conf.Parse()
|
|
conf.Status()
|
|
fmt.Println(conf.GetMapMapInt("test_map"))
|
|
fmt.Println(conf.GetInt("this_is_a_map"))
|
|
}
|