blob: 6e9e30986dc01a5829c8794469fd028d5baa338c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//+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)")
}
|