File: interface.go

package info (click to toggle)
golang-github-lestrrat-go-envload 0.0~git20180220.a3eb8dd-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 92 kB
  • sloc: makefile: 2
file content (39 lines) | stat: -rw-r--r-- 523 bytes parent folder | download
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{}
}