mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 19:14:23 +00:00
21 lines
676 B
Go
21 lines
676 B
Go
package grpc
|
|
|
|
import (
|
|
"context"
|
|
"github.com/caos/zitadel/internal/errors"
|
|
"github.com/golang/protobuf/ptypes/empty"
|
|
pb_struct "github.com/golang/protobuf/ptypes/struct"
|
|
)
|
|
|
|
func (s *Server) Healthz(_ context.Context, e *empty.Empty) (*empty.Empty, error) {
|
|
return nil, errors.ThrowUnimplemented(nil, "GRPC-bst5W", "Not implemented")
|
|
}
|
|
|
|
func (s *Server) Ready(ctx context.Context, e *empty.Empty) (*empty.Empty, error) {
|
|
return nil, errors.ThrowUnimplemented(nil, "GRPC-or0vW", "Not implemented")
|
|
}
|
|
|
|
func (s *Server) Validate(ctx context.Context, _ *empty.Empty) (*pb_struct.Struct, error) {
|
|
return nil, errors.ThrowUnimplemented(nil, "GRPC-lo6Eg", "Not implemented")
|
|
}
|