Ejemplo n.º 1
0
func ListHosts(q *skylib.Query) {
	results := q.FindHosts()

	for _, host := range *results {
		fmt.Println(host)
	}
}