mirror of
https://github.com/vxcontrol/cloud.git
synced 2026-07-21 07:55:22 -04:00
15 lines
134 B
Go
15 lines
134 B
Go
package system
|
|
|
|
import (
|
|
"os"
|
|
)
|
|
|
|
func getHostname() string {
|
|
hn, err := os.Hostname()
|
|
if err != nil {
|
|
return ""
|
|
}
|
|
|
|
return hn
|
|
}
|