dockerCliContextInfo implements api.ContextInfo using Docker CLI
| 22 | |
| 23 | // dockerCliContextInfo implements api.ContextInfo using Docker CLI |
| 24 | type dockerCliContextInfo struct { |
| 25 | cli command.Cli |
| 26 | } |
| 27 | |
| 28 | func (c *dockerCliContextInfo) CurrentContext() string { |
| 29 | return c.cli.CurrentContext() |
nothing calls this directly
no outgoing calls
no test coverage detected