trifid/tfclient-go/socket.go

13 lines
228 B
Go
Raw Normal View History

2024-01-24 00:34:46 +00:00
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"
}
}