aboutsummaryrefslogtreecommitdiff
path: root/go/operation
diff options
context:
space:
mode:
authorchrislusf <chris.lu@gmail.com>2015-04-16 13:21:55 -0700
committerchrislusf <chris.lu@gmail.com>2015-04-16 13:21:55 -0700
commit4d1ccf3e1053ea0067d46fc83d379b13e0ebb8b4 (patch)
tree3bff62cabe6fedda2819838b9c9f2e8440c782f0 /go/operation
parent41f29e9d8c8a910d3a3061dd167b7f448e243d0c (diff)
parentf0c2a2dcb314ffb9c2f33eb159edc81ab3903a6c (diff)
downloadseaweedfs-4d1ccf3e1053ea0067d46fc83d379b13e0ebb8b4.tar.xz
seaweedfs-4d1ccf3e1053ea0067d46fc83d379b13e0ebb8b4.zip
Merge pull request #118 from stuartpb/seaweedfs-rename
Change all chrislusf/weed-fs links to point to chrislu/seaweedfs
Diffstat (limited to 'go/operation')
-rw-r--r--go/operation/assign_file_id.go4
-rw-r--r--go/operation/delete_content.go4
-rw-r--r--go/operation/list_masters.go4
-rw-r--r--go/operation/lookup.go2
-rw-r--r--go/operation/submit.go4
-rw-r--r--go/operation/upload_content.go4
6 files changed, 11 insertions, 11 deletions
diff --git a/go/operation/assign_file_id.go b/go/operation/assign_file_id.go
index 02a0de976..fa436b651 100644
--- a/go/operation/assign_file_id.go
+++ b/go/operation/assign_file_id.go
@@ -7,8 +7,8 @@ import (
"net/url"
"strconv"
- "github.com/chrislusf/weed-fs/go/glog"
- "github.com/chrislusf/weed-fs/go/util"
+ "github.com/chrislusf/seaweedfs/go/glog"
+ "github.com/chrislusf/seaweedfs/go/util"
)
type AssignResult struct {
diff --git a/go/operation/delete_content.go b/go/operation/delete_content.go
index afd1bbc34..ac3dfa6b2 100644
--- a/go/operation/delete_content.go
+++ b/go/operation/delete_content.go
@@ -7,8 +7,8 @@ import (
"strings"
"sync"
- "github.com/chrislusf/weed-fs/go/security"
- "github.com/chrislusf/weed-fs/go/util"
+ "github.com/chrislusf/seaweedfs/go/security"
+ "github.com/chrislusf/seaweedfs/go/util"
)
type DeleteResult struct {
diff --git a/go/operation/list_masters.go b/go/operation/list_masters.go
index 7ada94243..bda6f3c65 100644
--- a/go/operation/list_masters.go
+++ b/go/operation/list_masters.go
@@ -3,8 +3,8 @@ package operation
import (
"encoding/json"
- "github.com/chrislusf/weed-fs/go/glog"
- "github.com/chrislusf/weed-fs/go/util"
+ "github.com/chrislusf/seaweedfs/go/glog"
+ "github.com/chrislusf/seaweedfs/go/util"
)
type ClusterStatusResult struct {
diff --git a/go/operation/lookup.go b/go/operation/lookup.go
index 8156c9779..f77d1ec9b 100644
--- a/go/operation/lookup.go
+++ b/go/operation/lookup.go
@@ -9,7 +9,7 @@ import (
"strings"
"time"
- "github.com/chrislusf/weed-fs/go/util"
+ "github.com/chrislusf/seaweedfs/go/util"
)
type Location struct {
diff --git a/go/operation/submit.go b/go/operation/submit.go
index 8bba14c5f..fec5d3801 100644
--- a/go/operation/submit.go
+++ b/go/operation/submit.go
@@ -9,8 +9,8 @@ import (
"strconv"
"strings"
- "github.com/chrislusf/weed-fs/go/glog"
- "github.com/chrislusf/weed-fs/go/security"
+ "github.com/chrislusf/seaweedfs/go/glog"
+ "github.com/chrislusf/seaweedfs/go/security"
)
type FilePart struct {
diff --git a/go/operation/upload_content.go b/go/operation/upload_content.go
index 533be82cb..c3fd5f4b1 100644
--- a/go/operation/upload_content.go
+++ b/go/operation/upload_content.go
@@ -14,8 +14,8 @@ import (
"path/filepath"
"strings"
- "github.com/chrislusf/weed-fs/go/glog"
- "github.com/chrislusf/weed-fs/go/security"
+ "github.com/chrislusf/seaweedfs/go/glog"
+ "github.com/chrislusf/seaweedfs/go/security"
)
type UploadResult struct {