summaryrefslogtreecommitdiff
path: root/get.go
blob: 8028bd11f90cc40a92655b1d92e37b01afa70550 (plain)
1
2
3
4
5
6
7
8
9
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
}