pkg/store: Remove unsused ErrSessionUndefined from consul.

Signed-off-by: Andrea Luzzardi <aluzzardi@gmail.com>
This commit is contained in:
Andrea Luzzardi 2015-05-13 19:01:01 -07:00
parent 9d055d6bf8
commit 04f7d2ac10
1 changed files with 0 additions and 6 deletions

View File

@ -2,7 +2,6 @@ package store
import (
"crypto/tls"
"errors"
"net/http"
"time"
@ -10,11 +9,6 @@ import (
api "github.com/hashicorp/consul/api"
)
var (
// ErrSessionUndefined is exported
ErrSessionUndefined = errors.New("Session does not exist")
)
// Consul embeds the client and watches
type Consul struct {
config *api.Config