open-consul/consul/status_endpoint.go

12 lines
232 B
Go
Raw Normal View History

2013-12-09 23:29:20 +00:00
package consul
// Status endpoint is used to check on server status
type Status struct {
server *Server
}
// Ping is used to just check for connectivity
func (s *Status) Ping(args struct{}, reply *struct{}) error {
return nil
}