Versions in this module Expand all Collapse all v0 v0.1.0 Oct 28, 2022 Changes in this version + type Client struct + func NewClient(address string) (*Client, error) + func (c *Client) CallImageProcessing(req *RequestImageProcessing, payload []byte) (*ResponseImageProcessing, error) + func (c *Client) Close() + type RequestImageProcessing struct + Bottom uint32 + Left uint32 + MessageId string + Quality uint32 + Right uint32 + Top uint32 + func (r *RequestImageProcessing) MarshalCborWithPayload(payload []byte) ([]byte, error) + func (r *RequestImageProcessing) UnmarshalCborWithPayload(msg []byte) ([]byte, error) + type ResponseImageProcessing struct + DstHeight uint32 + DstWidth uint32 + Message *string + ReqMessageId string + SrcHeight uint32 + SrcWidth uint32 + Success bool + func (r *ResponseImageProcessing) MarshalCborWithPayload(payload []byte) ([]byte, error) + func (r *ResponseImageProcessing) UnmarshalCborWithPayload(msg []byte) ([]byte, error) + type Server struct + func NewServer(address string) *Server + func (s *Server) Close() + func (s *Server) StartListenAndServe() error