Authenticator is the connection passed in as a reader/writer to support different authentication types
| 7 | |
| 8 | // Authenticator is the connection passed in as a reader/writer to support different authentication types |
| 9 | type Authenticator interface { |
| 10 | Handle(io.Reader, io.Writer) error |
| 11 | } |
| 12 | |
| 13 | // NoAuthAuthenticator is used to handle the No Authentication mode |
| 14 | type NoAuthAuthenticator struct{} |
nothing calls this directly
no outgoing calls
no test coverage detected