Files
crawlab/backend/vendor/github.com/globalsign/mgo/saslstub.go
2019-12-31 12:04:51 +08:00

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)")
}