12 lines
194 B
Go
12 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)")
|
||
|
}
|