Skip to content

Commit f9667b2

Browse files
committed
update client with registerschema
1 parent 5d478fc commit f9667b2

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

pkg/chipingress/client.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,10 @@ func (c *client) StreamEvents(_ context.Context, _ ...grpc.CallOption) (grpc.Bid
106106
return nil, fmt.Errorf("not implemented: StreamEvents is experimental and not supported yet")
107107
}
108108

109+
func (c *client) RegisterSchema(ctx context.Context, in *pb.RegisterSchemaRequest, opts ...grpc.CallOption) (*pb.RegisterSchemaResponse, error) {
110+
return c.client.RegisterSchema(ctx, in, opts...)
111+
}
112+
109113
func (c *client) Close() error {
110114
return c.conn.Close()
111115
}

0 commit comments

Comments
 (0)