BasicAuth structure holds our credentials
| 7 | |
| 8 | // BasicAuth structure holds our credentials |
| 9 | type BasicAuth struct { |
| 10 | user string |
| 11 | pw string |
| 12 | } |
| 13 | |
| 14 | // Type identifies the BasicAuthenticator |
| 15 | func (b *BasicAuth) Type() string { |
nothing calls this directly
no outgoing calls
no test coverage detected