MCPcopy Create free account
hub / github.com/docker/secrets-engine / PluginManagementFromClient

Function PluginManagementFromClient

client/client.go:174–180  ·  view source on GitHub ↗
(c Client)

Source from the content-addressed store, hash-verified

172}
173
174func PluginManagementFromClient(c Client) (PluginManagement, error) {
175 m, ok := c.(PluginManagement)
176 if !ok {
177 return nil, errors.New("client does not implement PluginManagement")
178 }
179 return m, nil
180}
181
182func isDialError(err error) bool {
183 if err == nil {

Callers 2

Test_ListPluginsFunction · 0.85

Calls

no outgoing calls

Tested by 2

Test_ListPluginsFunction · 0.68