1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
package envload
type Loader struct {
original []iterItem
envdir string
}
type Iterator struct {
ch chan *iterItem
nextK string
nextV string
}
type iterItem struct {
key string
value string
}
type Environment interface {
Clearenv()
Setenv(string, string)
}
type sysenv struct{}
type Option interface {
Name() string
Value() interface{}
}
const (
ContextKey = "ContextKey"
EnvironmentKey = "EnvironmentKey"
LoadEnvdirKey = "LoadEnvdirKey"
)
type option struct {
name string
value interface{}
}
|