From 5efc514097f6ffbdf44dc18fbe6ee69b8eb520f5 Mon Sep 17 00:00:00 2001 From: William Johansson Date: Sun, 17 Sep 2017 21:19:37 +0200 Subject: [PATCH] matchbox/client: Expose Select endpoint Exposes the Select endpoint in matchbox/client just as the other endpoints like Profiles, Ignition and Generic. --- matchbox/client/client.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/matchbox/client/client.go b/matchbox/client/client.go index 08b0de9a..53bd96ab 100644 --- a/matchbox/client/client.go +++ b/matchbox/client/client.go @@ -34,6 +34,7 @@ type Client struct { Profiles rpcpb.ProfilesClient Ignition rpcpb.IgnitionClient Generic rpcpb.GenericClient + Select rpcpb.SelectClient conn *grpc.ClientConn } @@ -66,6 +67,7 @@ func newClient(config *Config) (*Client, error) { Profiles: rpcpb.NewProfilesClient(conn), Ignition: rpcpb.NewIgnitionClient(conn), Generic: rpcpb.NewGenericClient(conn), + Select: rpcpb.NewSelectClient(conn), } return client, nil }