health: Merges healthcheck package to health package. (#2417)

This commit is contained in:
Can Guler
2018-10-30 16:08:45 -07:00
committed by GitHub
parent 582d1c9bbf
commit ec76f14f6f
4 changed files with 5 additions and 6 deletions

View File

@ -16,9 +16,7 @@
* *
*/ */
// Package healthcheck enables support for grpc health checking. It is package health
// EXPERIMENTAL.
package healthcheck
import ( import (
"fmt" "fmt"

View File

@ -16,7 +16,7 @@
* *
*/ */
package healthcheck package health
import ( import (
"errors" "errors"

View File

@ -18,8 +18,8 @@
//go:generate ./regenerate.sh //go:generate ./regenerate.sh
// Package health provides some utility functions to health-check a server. The implementation // Package health provides a service that exposes server's health and it must be
// is based on protobuf. Users need to write their own implementations if other IDLs are used. // imported to enable support for client-side health checks.
package health package health
import ( import (

View File

@ -15,6 +15,7 @@
* limitations under the License. * limitations under the License.
* *
*/ */
package health_test package health_test
import ( import (