You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
416 B
Go
18 lines
416 B
Go
package health
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/ajikamaludin/go-grpc_basic/pkg/v1/utils/constants"
|
|
hlpb "github.com/ajikamaludin/go-grpc_basic/proto/v1/health"
|
|
"github.com/golang/protobuf/ptypes/empty"
|
|
)
|
|
|
|
func (s *Server) Status(ctx context.Context, req *empty.Empty) (*hlpb.Response, error) {
|
|
return &hlpb.Response{
|
|
Success: true,
|
|
Code: constants.SuccessCode,
|
|
Desc: constants.SuccesDesc,
|
|
}, nil
|
|
}
|