hostname2/get.go

10 lines
186 B
Go

package hostname
// functions to import and export the protobuf
// data to and from config files
func Get() (string, error) {
hostname, err := osGetHostname()
return hostname, err
}