commit | 1e8ee51e9018fa47dda65d7fa1fdb43c0759683c | [log] [tgz] |
---|---|---|
author | Robin Thellend <rthellend@google.com> | Thu May 29 13:17:05 2014 -0700 |
committer | Robin Thellend <rthellend@google.com> | Thu May 29 13:17:05 2014 -0700 |
tree | e1ffb203a3bb53b95286277abee2eac23cdbf54e | |
parent | 308aae0ea0f1a1d18445ebc7b51b856f6ce6ee32 [diff] |
veyron/services/mounttable: Move the CLI tool to veyron/tools. Move the command-line mounttable tool to the veyron/tools directory. Change-Id: I8f6e47d374fb87359b7b17be427d3d4d94b0bd1f
diff --git a/services/mounttable/mounttable/impl/impl.go b/tools/mounttable/impl/impl.go similarity index 100% rename from services/mounttable/mounttable/impl/impl.go rename to tools/mounttable/impl/impl.go
diff --git a/services/mounttable/mounttable/impl/impl_test.go b/tools/mounttable/impl/impl_test.go similarity index 98% rename from services/mounttable/mounttable/impl/impl_test.go rename to tools/mounttable/impl/impl_test.go index 37c758b..51a37ce 100644 --- a/services/mounttable/mounttable/impl/impl_test.go +++ b/tools/mounttable/impl/impl_test.go
@@ -5,7 +5,7 @@ "strings" "testing" - "veyron/services/mounttable/mounttable/impl" + "veyron/tools/mounttable/impl" "veyron2" "veyron2/ipc"
diff --git a/services/mounttable/mounttable/main.go b/tools/mounttable/main.go similarity index 69% rename from services/mounttable/mounttable/main.go rename to tools/mounttable/main.go index 24f5a15..a59a17b 100644 --- a/services/mounttable/mounttable/main.go +++ b/tools/mounttable/main.go
@@ -1,7 +1,7 @@ package main import ( - "veyron/services/mounttable/mounttable/impl" + "veyron/tools/mounttable/impl" "veyron2/rt" )