Client is the client to update object in the API server.
| 19 | |
| 20 | // Client is the client to update object in the API server. |
| 21 | type Client struct { |
| 22 | client dynamic.Interface |
| 23 | restMapper meta.RESTMapper |
| 24 | } |
| 25 | |
| 26 | // NewClient returns a client to get and update an object. |
| 27 | func NewClient(d dynamic.Interface, mapper meta.RESTMapper) *Client { |
nothing calls this directly
no outgoing calls
no test coverage detected