fix: add requests

This commit is contained in:
Fabiennne
2020-03-24 10:14:39 +01:00
parent 46c3289ee3
commit c20dd3cb3f
26 changed files with 869 additions and 7 deletions

View File

@@ -0,0 +1,10 @@
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")
}