summaryrefslogtreecommitdiffstats
path: root/pkg/lookpath/env.go
blob: dc376e7b45eb7c267f1168d95e09e2eb586fcc20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package lookpath

import "os"

type Env interface {
	Getenv(name string) string
}

type defaultEnv struct {
}

func (*defaultEnv) Getenv(name string) string {
	return os.Getenv(name)
}

func LookPath(file string) (string, error) {
	return LookPath2(file, &defaultEnv{})
}