Files
crawlab/backend/vendor/github.com/globalsign/mgo/saslstub.go
Marvin Zhang 53cebde962 added golang
2019-07-22 12:51:52 +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)")
}