mirror of
https://github.com/spf13/cobra
synced 2025-05-05 12:57:22 +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
|
|
}
|