package sprigx import ( "os" ) // osHostname returns os.Hostname() func osHostname() (out string, err error) { out, err = os.Hostname() return }