Example #1
0
func ListHosts(q *client.Query) {
	results := q.FindHosts()

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