zitadel/internal/api/grpc/auth/probes.go

12 lines
195 B
Go
Raw Normal View History

package auth
2020-03-24 09:14:39 +00:00
import (
"context"
2020-03-24 09:14:39 +00:00
"github.com/golang/protobuf/ptypes/empty"
)
func (s *Server) Healthz(_ context.Context, e *empty.Empty) (*empty.Empty, error) {
return &empty.Empty{}, nil
2020-03-24 09:14:39 +00:00
}