aboutsummaryrefslogtreecommitdiff
path: root/weed/pb/mount.proto
diff options
context:
space:
mode:
Diffstat (limited to 'weed/pb/mount.proto')
-rw-r--r--weed/pb/mount.proto25
1 files changed, 25 insertions, 0 deletions
diff --git a/weed/pb/mount.proto b/weed/pb/mount.proto
new file mode 100644
index 000000000..ec0847f12
--- /dev/null
+++ b/weed/pb/mount.proto
@@ -0,0 +1,25 @@
+syntax = "proto3";
+
+package messaging_pb;
+
+option go_package = "github.com/chrislusf/seaweedfs/weed/pb/mount_pb";
+option java_package = "seaweedfs.client";
+option java_outer_classname = "MountProto";
+
+//////////////////////////////////////////////////
+
+service SeaweedMount {
+
+ rpc Configure (ConfigureRequest) returns (ConfigureResponse) {
+ }
+
+}
+
+//////////////////////////////////////////////////
+
+message ConfigureRequest {
+ int64 collection_capacity = 1;
+}
+
+message ConfigureResponse {
+}