8 lines
123 B
Go
8 lines
123 B
Go
package Tools
|
|
|
|
// Provide the server's hostname.
|
|
func ThisHostname() (result string) {
|
|
result = hostname
|
|
return
|
|
}
|