commit | 9d22b7d5f0c0ceab51f43e50156b3522659d5338 | [log] [tgz] |
---|---|---|
author | Jiri Simsa <jsimsa@google.com> | Tue Aug 05 14:10:22 2014 -0700 |
committer | Jiri Simsa <jsimsa@google.com> | Tue Aug 05 14:10:24 2014 -0700 |
tree | d14e530d788ff01cc29ac2fb79a2bf56e064be6d | |
parent | 7c5d1ba7570c3bfa6e53a6532da017f8a8512b7f [diff] [blame] |
veyron/tools/build: moving the client for interacting with the build server into the veyron repository and writing a simple test for it Change-Id: Ia7cd1d9a26d5bd3204e522370d42eb9bdf227e3a
diff --git a/tools/build/main.go b/tools/build/main.go new file mode 100644 index 0000000..4e872f5 --- /dev/null +++ b/tools/build/main.go
@@ -0,0 +1,14 @@ +package main + +import ( + "veyron/tools/build/impl" + + "veyron2/rt" +) + +func main() { + r := rt.Init() + defer r.Cleanup() + + impl.Root().Main() +}