patchman/client/utils/hostname.go

12 lines
152 B
Go
Raw Permalink Normal View History

2023-10-26 21:32:21 +02:00
package utils
import "os"
func GetHostname() string {
hostname, err := os.Hostname()
if err != nil {
hostname = "localhost"
}
return hostname
}