Jiri Simsa | d7616c9 | 2015-03-24 23:44:30 -0700 | [diff] [blame] | 1 | // Copyright 2015 The Vanadium Authors. All rights reserved. |
| 2 | // Use of this source code is governed by a BSD-style |
| 3 | // license that can be found in the LICENSE file. |
| 4 | |
Robin Thellend | 4523df6 | 2014-12-08 09:55:46 -0800 | [diff] [blame] | 5 | // The following enables go generate to generate the doc.go file. |
Jiri Simsa | 24a7155 | 2015-02-27 11:31:36 -0800 | [diff] [blame] | 6 | //go:generate go run $VANADIUM_ROOT/release/go/src/v.io/x/lib/cmdline/testdata/gendoc.go . -help |
Robin Thellend | 4523df6 | 2014-12-08 09:55:46 -0800 | [diff] [blame] | 7 | |
| 8 | package main |
| 9 | |
Matt Rosencrantz | 83b0b7f | 2015-03-26 16:17:01 -0700 | [diff] [blame] | 10 | import ( |
| 11 | "os" |
| 12 | ) |
Matt Rosencrantz | 92303e1 | 2015-01-21 09:02:42 -0800 | [diff] [blame] | 13 | |
Robin Thellend | 4523df6 | 2014-12-08 09:55:46 -0800 | [diff] [blame] | 14 | func main() { |
Matt Rosencrantz | 92303e1 | 2015-01-21 09:02:42 -0800 | [diff] [blame] | 15 | os.Exit(cmdGCLogs.Main()) |
Robin Thellend | 4523df6 | 2014-12-08 09:55:46 -0800 | [diff] [blame] | 16 | } |