aboutsummaryrefslogtreecommitdiff
path: root/vendor/gopkg.in/mgo.v2/saslimpl.go
diff options
context:
space:
mode:
authorKevin Lyda <kevin@ie.suberic.net>2017-01-27 09:08:58 +0000
committerNiall Sheridan <nsheridan@gmail.com>2017-01-27 09:08:58 +0000
commit10dfd24117094ed81197c764af25cafe12a25dfd (patch)
tree4af4c066daffb42469ed8a0e14d510dea321375b /vendor/gopkg.in/mgo.v2/saslimpl.go
parent13054312850d1014e814d2f64afa030a4fea5ef3 (diff)
Remove mongo support
Resolves #40
Diffstat (limited to 'vendor/gopkg.in/mgo.v2/saslimpl.go')
-rw-r--r--vendor/gopkg.in/mgo.v2/saslimpl.go11
1 files changed, 0 insertions, 11 deletions
diff --git a/vendor/gopkg.in/mgo.v2/saslimpl.go b/vendor/gopkg.in/mgo.v2/saslimpl.go
deleted file mode 100644
index 0d25f25..0000000
--- a/vendor/gopkg.in/mgo.v2/saslimpl.go
+++ /dev/null
@@ -1,11 +0,0 @@
-//+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)
-}