package admin import ( "context" "github.com/golang/protobuf/ptypes/empty" pb_struct "github.com/golang/protobuf/ptypes/struct" "github.com/caos/zitadel/internal/errors" ) func (s *Server) Healthz(_ context.Context, e *empty.Empty) (*empty.Empty, error) { return &empty.Empty{}, nil } func (s *Server) Ready(ctx context.Context, e *empty.Empty) (*empty.Empty, error) { return &empty.Empty{}, s.repo.Health(ctx) } func (s *Server) Validate(ctx context.Context, _ *empty.Empty) (*pb_struct.Struct, error) { return nil, errors.ThrowUnimplemented(nil, "GRPC-98Gse", "Not implemented") }