Skip to content

Commit

Permalink
Fix GoDoc const grouping (#50)
Browse files Browse the repository at this point in the history
  • Loading branch information
akshayjshah authored Jun 12, 2023
1 parent 2c0bd17 commit f06b4c8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions grpchealth.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,13 @@ import (
healthv1 "connectrpc.com/grpchealth/internal/gen/go/connectext/grpc/health/v1"
)

// HealthV1ServiceName is the fully-qualified name of the v1 version of the health service.
const HealthV1ServiceName = "grpc.health.v1.Health"

// Status describes the health of a service.
type Status uint8

const (
// HealthV1ServiceName is the fully-qualified name of the v1 version of the health service.
HealthV1ServiceName = "grpc.health.v1.Health"

// StatusUnknown indicates that the service's health state is indeterminate.
StatusUnknown Status = 0

Expand Down

0 comments on commit f06b4c8

Please sign in to comment.