blob: bc021ef8bbd9888c2bbf7a6c2cb6952fde82eb72 [file] [log] [blame]
Robin Thellend663bf482014-10-01 10:27:10 -07001// A command-line tool to interface with the debug server.
2package main
3
4import (
5 "veyron.io/veyron/veyron/tools/debug/impl"
6 "veyron.io/veyron/veyron2/rt"
7)
8
9func main() {
10 defer rt.Init().Cleanup()
11 impl.Root().Main()
12}