mirror of
https://github.com/spf13/cobra
synced 2025-05-06 13:27:26 +00:00
11 lines
208 B
Go
11 lines
208 B
Go
package decryptor
|
|
|
|
type NoopDecryptor struct{}
|
|
|
|
func NewNoopDecryptor() Decryptor {
|
|
return &NoopDecryptor{}
|
|
}
|
|
|
|
func (n *NoopDecryptor) DecryptArguments(args []string) ([]string, error) {
|
|
return args, nil
|
|
}
|