mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 11:34:26 +00:00
11 lines
286 B
Go
11 lines
286 B
Go
package grpc
|
|
|
|
import (
|
|
"context"
|
|
"github.com/caos/zitadel/internal/errors"
|
|
)
|
|
|
|
func (s *Server) SearchAuthGrant(ctx context.Context, grantSearch *AuthGrantSearchRequest) (*AuthGrantSearchResponse, error) {
|
|
return nil, errors.ThrowUnimplemented(nil, "GRPC-dkwd5", "Not implemented")
|
|
}
|