mirror of
https://github.com/vbatts/imgsrv.git
synced 2025-01-08 21:37:07 +00:00
12 lines
216 B
Go
12 lines
216 B
Go
|
//+build sasl
|
||
|
|
||
|
package mgo
|
||
|
|
||
|
import (
|
||
|
"labix.org/v2/mgo/sasl"
|
||
|
)
|
||
|
|
||
|
func saslNew(cred Credential, host string) (saslStepper, error) {
|
||
|
return sasl.New(cred.Username, cred.Password, cred.Mechanism, cred.Service, host)
|
||
|
}
|