Ocean/Tools/Hostname.go
2015-06-17 17:44:52 +02:00

8 lines
123 B
Go

package Tools
// Provide the server's hostname.
func ThisHostname() (result string) {
result = hostname
return
}