aboutsummaryrefslogtreecommitdiff
path: root/weed/security
diff options
context:
space:
mode:
authorj.laycock <joseph.laycock@4sightimaging.com>2019-09-02 11:28:40 +0100
committerj.laycock <joseph.laycock@4sightimaging.com>2019-09-02 11:28:40 +0100
commit595a1beff00196c9b207787833578ba1de1847e5 (patch)
tree15b1bf2740a7718a1ff4ca13a0e6fa51ea6c0623 /weed/security
parent1e62a2b233458262c875dcf182309cc2425fe5a8 (diff)
downloadseaweedfs-595a1beff00196c9b207787833578ba1de1847e5.tar.xz
seaweedfs-595a1beff00196c9b207787833578ba1de1847e5.zip
Swap imports to use joeslay
Diffstat (limited to 'weed/security')
-rw-r--r--weed/security/guard.go2
-rw-r--r--weed/security/jwt.go2
-rw-r--r--weed/security/tls.go2
3 files changed, 3 insertions, 3 deletions
diff --git a/weed/security/guard.go b/weed/security/guard.go
index 17fe2ea9e..c53b5648e 100644
--- a/weed/security/guard.go
+++ b/weed/security/guard.go
@@ -7,7 +7,7 @@ import (
"net/http"
"strings"
- "github.com/chrislusf/seaweedfs/weed/glog"
+ "github.com/joeslay/seaweedfs/weed/glog"
)
var (
diff --git a/weed/security/jwt.go b/weed/security/jwt.go
index 0bd7fa974..b8933a08c 100644
--- a/weed/security/jwt.go
+++ b/weed/security/jwt.go
@@ -6,7 +6,7 @@ import (
"strings"
"time"
- "github.com/chrislusf/seaweedfs/weed/glog"
+ "github.com/joeslay/seaweedfs/weed/glog"
jwt "github.com/dgrijalva/jwt-go"
)
diff --git a/weed/security/tls.go b/weed/security/tls.go
index e81ba4831..4c26d1b85 100644
--- a/weed/security/tls.go
+++ b/weed/security/tls.go
@@ -6,7 +6,7 @@ import (
"github.com/spf13/viper"
"io/ioutil"
- "github.com/chrislusf/seaweedfs/weed/glog"
+ "github.com/joeslay/seaweedfs/weed/glog"
"google.golang.org/grpc"
"google.golang.org/grpc/credentials"
)