Robin Thellend | 663bf48 | 2014-10-01 10:27:10 -0700 | [diff] [blame^] | 1 | // A command-line tool to interface with the debug server. |
2 | package main | ||||
3 | |||||
4 | import ( | ||||
5 | "veyron.io/veyron/veyron/tools/debug/impl" | ||||
6 | "veyron.io/veyron/veyron2/rt" | ||||
7 | ) | ||||
8 | |||||
9 | func main() { | ||||
10 | defer rt.Init().Cleanup() | ||||
11 | impl.Root().Main() | ||||
12 | } |