X-Git-Url: https://gerrit.fd.io/r/gitweb?p=govpp.git;a=blobdiff_plain;f=internal%2Ftestbinapi%2Fbinapi2001%2Fnetmap%2Fnetmap_rpc.ba.go;fp=internal%2Ftestbinapi%2Fbinapi2001%2Fnetmap%2Fnetmap_rpc.ba.go;h=0000000000000000000000000000000000000000;hp=9746ff71730ae53f2cce22bb61e0db6d70ae760f;hb=e9567fa8c853dda16c54afbd2ba99b7263fa37f1;hpb=4102c72bce694babd94a481b1201d33895a6f9c5 diff --git a/internal/testbinapi/binapi2001/netmap/netmap_rpc.ba.go b/internal/testbinapi/binapi2001/netmap/netmap_rpc.ba.go deleted file mode 100644 index 9746ff7..0000000 --- a/internal/testbinapi/binapi2001/netmap/netmap_rpc.ba.go +++ /dev/null @@ -1,41 +0,0 @@ -// Code generated by GoVPP's binapi-generator. DO NOT EDIT. - -package netmap - -import ( - "context" - - api "git.fd.io/govpp.git/api" -) - -// RPCService defines RPC service netmap. -type RPCService interface { - NetmapCreate(ctx context.Context, in *NetmapCreate) (*NetmapCreateReply, error) - NetmapDelete(ctx context.Context, in *NetmapDelete) (*NetmapDeleteReply, error) -} - -type serviceClient struct { - conn api.Connection -} - -func NewServiceClient(conn api.Connection) RPCService { - return &serviceClient{conn} -} - -func (c *serviceClient) NetmapCreate(ctx context.Context, in *NetmapCreate) (*NetmapCreateReply, error) { - out := new(NetmapCreateReply) - err := c.conn.Invoke(ctx, in, out) - if err != nil { - return nil, err - } - return out, api.RetvalToVPPApiError(out.Retval) -} - -func (c *serviceClient) NetmapDelete(ctx context.Context, in *NetmapDelete) (*NetmapDeleteReply, error) { - out := new(NetmapDeleteReply) - err := c.conn.Invoke(ctx, in, out) - if err != nil { - return nil, err - } - return out, api.RetvalToVPPApiError(out.Retval) -}