blob: 9e5d5561aa29baedd7629e87e6255eddb9f3a47b [file] [log] [blame]
Todd Wang0d12d712014-10-06 17:25:41 -07001// The following enables go generate to generate the doc.go file.
Jiri Simsabc26d692014-11-19 18:30:55 -08002//go:generate go run $VEYRON_ROOT/lib/cmdline/testdata/gendoc.go .
Todd Wangfcb72a52014-10-01 09:53:56 -07003
Robin Thellend9259f3b2014-05-21 10:07:24 -07004package main
5
6import (
Jiri Simsa519c5072014-09-17 21:37:57 -07007 "veyron.io/veyron/veyron2/rt"
Cosmos Nicolaouf889c732014-10-16 20:46:54 -07008
9 _ "veyron.io/veyron/veyron/profiles"
Robin Thellend9259f3b2014-05-21 10:07:24 -070010)
11
12func main() {
Robin Thellend18205cf2014-10-21 13:53:59 -070013 defer rt.Init().Cleanup()
14 root().Main()
Robin Thellend9259f3b2014-05-21 10:07:24 -070015}