noopService disables encryption
| 91 | |
| 92 | // noopService disables encryption |
| 93 | type noopService struct{} |
| 94 | |
| 95 | func (s *noopService) Encrypt(plaintext string) (string, error) { |
| 96 | return plaintext, nil |
nothing calls this directly
no outgoing calls
no test coverage detected