get.porter.sh/porter@v1.3.0/pkg/secrets/plugins/secrets_plugin.go (about)

     1  package plugins
     2  
     3  import "errors"
     4  
     5  const (
     6  	// PluginInterface for secrets. This first part of the
     7  	// three-part plugin key is only seen/used by the plugins when the host is
     8  	// communicating with the plugin and is not exposed to users.
     9  	PluginInterface = "secrets"
    10  
    11  	// PluginProtocolVersion is the currently supported plugin protocol version for secrets.
    12  	PluginProtocolVersion = 2
    13  )
    14  
    15  var (
    16  	// ErrNotImplemented is the error to be returned if a method is not implemented
    17  	// in a secret plugin
    18  	ErrNotImplemented = errors.New("not implemented")
    19  )