aboutsummaryrefslogtreecommitdiff
path: root/go/operation
diff options
context:
space:
mode:
Diffstat (limited to 'go/operation')
-rw-r--r--go/operation/assign_file_id.go5
-rw-r--r--go/operation/data_struts.go2
-rw-r--r--go/operation/delete_content.go3
-rw-r--r--go/operation/list_masters.go3
-rw-r--r--go/operation/lookup.go3
-rw-r--r--go/operation/submit.go3
-rw-r--r--go/operation/system_message_test.go3
-rw-r--r--go/operation/upload_content.go3
8 files changed, 15 insertions, 10 deletions
diff --git a/go/operation/assign_file_id.go b/go/operation/assign_file_id.go
index 4e72ad939..672bfa99c 100644
--- a/go/operation/assign_file_id.go
+++ b/go/operation/assign_file_id.go
@@ -1,12 +1,13 @@
package operation
import (
- "github.com/chrislusf/weed-fs/go/glog"
- "github.com/chrislusf/weed-fs/go/util"
"encoding/json"
"errors"
"net/url"
"strconv"
+
+ "github.com/chrislusf/weed-fs/go/glog"
+ "github.com/chrislusf/weed-fs/go/util"
)
type AssignResult struct {
diff --git a/go/operation/data_struts.go b/go/operation/data_struts.go
index 09fab05d1..4980f9913 100644
--- a/go/operation/data_struts.go
+++ b/go/operation/data_struts.go
@@ -1,7 +1,5 @@
package operation
-import ()
-
type JoinResult struct {
VolumeSizeLimit uint64 `json:"VolumeSizeLimit,omitempty"`
Error string `json:"error,omitempty"`
diff --git a/go/operation/delete_content.go b/go/operation/delete_content.go
index 84391b634..416a852b3 100644
--- a/go/operation/delete_content.go
+++ b/go/operation/delete_content.go
@@ -1,12 +1,13 @@
package operation
import (
- "github.com/chrislusf/weed-fs/go/util"
"encoding/json"
"errors"
"net/url"
"strings"
"sync"
+
+ "github.com/chrislusf/weed-fs/go/util"
)
type DeleteResult struct {
diff --git a/go/operation/list_masters.go b/go/operation/list_masters.go
index 7d46a9ebc..7ada94243 100644
--- a/go/operation/list_masters.go
+++ b/go/operation/list_masters.go
@@ -1,9 +1,10 @@
package operation
import (
+ "encoding/json"
+
"github.com/chrislusf/weed-fs/go/glog"
"github.com/chrislusf/weed-fs/go/util"
- "encoding/json"
)
type ClusterStatusResult struct {
diff --git a/go/operation/lookup.go b/go/operation/lookup.go
index ebf153d27..e6b6658da 100644
--- a/go/operation/lookup.go
+++ b/go/operation/lookup.go
@@ -1,7 +1,6 @@
package operation
import (
- "github.com/chrislusf/weed-fs/go/util"
"encoding/json"
"errors"
_ "fmt"
@@ -9,6 +8,8 @@ import (
"net/url"
"strings"
"time"
+
+ "github.com/chrislusf/weed-fs/go/util"
)
type Location struct {
diff --git a/go/operation/submit.go b/go/operation/submit.go
index 3e09c2edf..62db46617 100644
--- a/go/operation/submit.go
+++ b/go/operation/submit.go
@@ -2,13 +2,14 @@ package operation
import (
"bytes"
- "github.com/chrislusf/weed-fs/go/glog"
"io"
"mime"
"os"
"path"
"strconv"
"strings"
+
+ "github.com/chrislusf/weed-fs/go/glog"
)
type FilePart struct {
diff --git a/go/operation/system_message_test.go b/go/operation/system_message_test.go
index 2731d0b2f..b5624c258 100644
--- a/go/operation/system_message_test.go
+++ b/go/operation/system_message_test.go
@@ -1,10 +1,11 @@
package operation
import (
- proto "code.google.com/p/goprotobuf/proto"
"encoding/json"
"log"
"testing"
+
+ proto "code.google.com/p/goprotobuf/proto"
)
func TestSerialDeserial(t *testing.T) {
diff --git a/go/operation/upload_content.go b/go/operation/upload_content.go
index 38737702d..480d76dca 100644
--- a/go/operation/upload_content.go
+++ b/go/operation/upload_content.go
@@ -2,7 +2,6 @@ package operation
import (
"bytes"
- "github.com/chrislusf/weed-fs/go/glog"
"encoding/json"
"errors"
"fmt"
@@ -14,6 +13,8 @@ import (
"net/textproto"
"path/filepath"
"strings"
+
+ "github.com/chrislusf/weed-fs/go/glog"
)
type UploadResult struct {