health: Merges healthcheck package to health package. ()

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

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

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

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

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