traefik/vendor/gopkg.in/mgo.v2/saslimpl.go

12 lines
224 B
Go
Raw Normal View History

2017-02-07 21:33:23 +00:00
//+build sasl
package mgo
import (
"gopkg.in/mgo.v2/internal/sasl"
)
func saslNew(cred Credential, host string) (saslStepper, error) {
return sasl.New(cred.Username, cred.Password, cred.Mechanism, cred.Service, host)
}