hostname_generic.go 141 B

12345678910
  1. // +build !linux
  2. package sysinfo
  3. import "os"
  4. // Hostname returns the host name.
  5. func Hostname() (string, error) {
  6. return os.Hostname()
  7. }