diff --git a/consul/status_endpoint.go b/consul/status_endpoint.go new file mode 100644 index 0000000000..4680f55520 --- /dev/null +++ b/consul/status_endpoint.go @@ -0,0 +1,11 @@ +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 +}