mirror of
https://gitlab.com/ric_harvey/MailHog.git
synced 2024-11-23 22:34:04 +00:00
11 lines
194 B
Go
11 lines
194 B
Go
//+build !sasl
|
|
|
|
package mgo
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
func saslNew(cred Credential, host string) (saslStepper, error) {
|
|
return nil, fmt.Errorf("SASL support not enabled during build (-tags sasl)")
|
|
}
|