blob: da5821ba8e304535847ed9a9a41e865ee1281a66 [file] [log] [blame]
Robin Thellend9259f3b2014-05-21 10:07:24 -07001package main
2
3import (
Robin Thellend308aae02014-05-29 12:55:56 -07004 "veyron/tools/profile/impl"
Robin Thellend9259f3b2014-05-21 10:07:24 -07005
6 "veyron2/rt"
7)
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}