示例#1
0
文件: util.go 项目: spesnova/emp
func netrcPath() string {
	if s := os.Getenv("NETRC_PATH"); s != "" {
		return s
	}

	return filepath.Join(hkclient.HomePath(), netrcFilename)
}
示例#2
0
文件: util.go 项目: spesnova/emp
func hkHome() string {
	return filepath.Join(hkclient.HomePath(), ".hk")
}