Hi I want to use BulkCheckPermisson, but I am not ...
# spicedb
n
Hi I want to use BulkCheckPermisson, but I am not this method with my client. I am creating my client like this
Copy code
client, err := authzed.NewClient(
        "localhost:50051",
        grpcutil.WithInsecureBearerToken("mykey"),
        grpc.WithTransportCredentials(insecure.NewCredentials()),
)
I checked the implementation in spicedb test code, but there it is creating test server with experimental service
Copy code
conn, cleanup, _, _ := testserver.NewTestServer(require, 0, memdb.DisableGC, true, tf.StandardDatastoreWithSchema)
client := v1.NewExperimentalServiceClient(conn)
I guess the above will create a test server with memdb. But I want to use this with my spciedb and postgres setup.