mirror of
https://github.com/status-im/consul.git
synced 2025-01-09 13:26:07 +00:00
12 lines
194 B
Go
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)")
|
|
}
|