mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-02 07:20:00 +00:00
13 lines
214 B
Go
13 lines
214 B
Go
|
package sprig
|
||
|
|
||
|
import (
|
||
|
"math/rand"
|
||
|
"net"
|
||
|
)
|
||
|
|
||
|
func getHostByName(name string) string {
|
||
|
addrs, _ := net.LookupHost(name)
|
||
|
//TODO: add error handing when release v3 comes out
|
||
|
return addrs[rand.Intn(len(addrs))]
|
||
|
}
|