2020-07-08 11:56:37 +00:00
|
|
|
package auth
|
2020-03-24 09:14:39 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2020-07-08 11:56:37 +00:00
|
|
|
|
2020-03-24 09:14:39 +00:00
|
|
|
"github.com/golang/protobuf/ptypes/empty"
|
|
|
|
pb_struct "github.com/golang/protobuf/ptypes/struct"
|
2020-07-08 11:56:37 +00:00
|
|
|
|
|
|
|
"github.com/caos/zitadel/internal/errors"
|
2020-03-24 09:14:39 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
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")
|
|
|
|
}
|