Mechanism implements the PLAIN mechanism and passes the credentials in clear text.
| 10 | // Mechanism implements the PLAIN mechanism and passes the credentials in clear |
| 11 | // text. |
| 12 | type Mechanism struct { |
| 13 | Username string |
| 14 | Password string |
| 15 | } |
| 16 | |
| 17 | func (Mechanism) Name() string { |
| 18 | return "PLAIN" |
nothing calls this directly
no outgoing calls
no test coverage detected