open-nomad/nomad/regions_endpoint.go

17 lines
449 B
Go
Raw Normal View History

2015-11-24 05:47:11 +00:00
package nomad
import "github.com/hashicorp/nomad/nomad/structs"
// Region is used to query and list the known regions
type Region struct {
srv *Server
}
// List is used to list all of the known regions. No leader forwarding is
// required for this endpoint because memberlist is used to populate the
// peers list we read from.
2015-11-24 05:47:11 +00:00
func (r *Region) List(args *structs.GenericRequest, reply *[]string) error {
*reply = r.srv.Regions()
return nil
}