aboutsummaryrefslogtreecommitdiff
path: root/go/operation
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2014-04-16 17:29:58 -0700
committerChris Lu <chris.lu@gmail.com>2014-04-16 17:29:58 -0700
commit9653a54766fbb7d9e7453c0df0eb0de016cfbce6 (patch)
treebf8637d973a336286c31d83cf5a9198b9af4a3f4 /go/operation
parentda0480ad728af0bbccc63ec802283c6f54b17658 (diff)
downloadseaweedfs-9653a54766fbb7d9e7453c0df0eb0de016cfbce6.tar.xz
seaweedfs-9653a54766fbb7d9e7453c0df0eb0de016cfbce6.zip
added typed join result
Diffstat (limited to 'go/operation')
-rw-r--r--go/operation/data_struts.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/go/operation/data_struts.go b/go/operation/data_struts.go
new file mode 100644
index 000000000..09fab05d1
--- /dev/null
+++ b/go/operation/data_struts.go
@@ -0,0 +1,8 @@
+package operation
+
+import ()
+
+type JoinResult struct {
+ VolumeSizeLimit uint64 `json:"VolumeSizeLimit,omitempty"`
+ Error string `json:"error,omitempty"`
+}