blob: b512f3296f38a81924e4299839f46b1cdbe956cb [file] [log] [blame]
Robin Thellend9259f3b2014-05-21 10:07:24 -07001package main
2
3import (
Jiri Simsa519c5072014-09-17 21:37:57 -07004 "veyron.io/veyron/veyron/tools/binary/impl"
Robin Thellend9259f3b2014-05-21 10:07:24 -07005
Jiri Simsa519c5072014-09-17 21:37:57 -07006 "veyron.io/veyron/veyron2/rt"
Robin Thellend9259f3b2014-05-21 10:07:24 -07007)
8
9func main() {
10 r := rt.Init()
Bogdan Caprita4258d882014-07-02 09:15:22 -070011 defer r.Cleanup()
Robin Thellend9259f3b2014-05-21 10:07:24 -070012
13 impl.Root().Main()
14}