1
0
Fork 0
mirror of https://github.com/vbatts/imgsrv.git synced 2025-01-08 21:37:07 +00:00
imgsrv/vendor/labix.org/v2/mgo/saslstub.go

12 lines
194 B
Go
Raw Normal View History

2017-02-06 17:25:03 +00:00
//+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)")
}