blob: 708f05a823b259df7d9fbc726e8e9612159c9999 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
package global
import (
"os"
"strings"
)
var Options []string
var ReturnCode int
var Paths []string
func init() {
Options = make([]string, 0)
ReturnCode = 0
Paths = strings.Split(os.Getenv("PATH"), ":")
}
|