13 lines
228 B
Go
13 lines
228 B
Go
|
package tfclient
|
||
|
|
||
|
import "runtime"
|
||
|
|
||
|
func SocketPath(Name string) string {
|
||
|
switch runtime.GOOS {
|
||
|
case "windows":
|
||
|
return "C:\\ProgramData\\tfclient\\" + Name + ".sock"
|
||
|
default:
|
||
|
return "/tmp/tfclient-" + Name + ".sock"
|
||
|
}
|
||
|
}
|