Files
crawlab/backend/vendor/github.com/globalsign/mgo/saslimpl.go
Marvin Zhang 56c99b314f added golang
2019-07-22 12:51:52 +08:00

12 lines
234 B
Go

//+build sasl
package mgo
import (
"github.com/globalsign/mgo/internal/sasl"
)
func saslNew(cred Credential, host string) (saslStepper, error) {
return sasl.New(cred.Username, cred.Password, cred.Mechanism, cred.Service, host)
}