dguhr84
12/19/2023, 3:56 PMauthzed.ClientWithExperimental{
Client: authzed.NewClient(
endpoint,
opts...,
),
ExperimentalServiceClient: v1.NewExperimentalServiceClient(),
}
currently, but NewExperimentalServiceClient(...)
needs a parameter of type grpc.ClientConnInterface
and I don't know if that's a) even the right approach after all, and b) what to add there. Any help is highly appreciated 🙂ecordell
12/19/2023, 3:59 PMauthzed.NewClient
you can use authzed.NewClientWithExperimentalAPIs
to get one with the experimental apis enabled
you would need a raw grpc conn to build the client object directly, but you probably don't need to do thatdguhr84
12/19/2023, 4:02 PM