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 | |
Todd Wang | 8c4e5cc | 2015-04-09 11:30:52 -0700 | [diff] [blame] | 5 | // Package flags implements utilities to augment the standard Go flag package. |
| 6 | // It defines commonly used Vanadium flags, and implementations of the |
| 7 | // flag.Value interface for those flags to ensure that only valid values of |
| 8 | // those flags are supplied. Some of these flags may also be specified using |
| 9 | // environment variables directly and are documented accordingly; in these cases |
| 10 | // the command line value takes precedence over the environment variable. |
Cosmos Nicolaou | d811b07 | 2014-10-28 17:46:27 -0700 | [diff] [blame] | 11 | // |
Adam Sadovsky | d21d95a | 2014-10-29 09:56:59 -0700 | [diff] [blame] | 12 | // Flags are defined as 'groups' of related flags so that the caller may choose |
Todd Wang | 8c4e5cc | 2015-04-09 11:30:52 -0700 | [diff] [blame] | 13 | // which ones to use without having to be burdened with the full set. The |
| 14 | // groups may be used directly or via the Flags type that aggregates multiple |
| 15 | // groups. In all cases, the flags are registered with a supplied flag.FlagSet |
Adam Sadovsky | d21d95a | 2014-10-29 09:56:59 -0700 | [diff] [blame] | 16 | // and hence are not forced onto the command line unless the caller passes in |
| 17 | // flag.CommandLine as the flag.FlagSet to use. |
| 18 | // |
Suharsh Sivakumar | d1cc6e0 | 2015-03-16 13:58:49 -0700 | [diff] [blame] | 19 | // In general, this package will be used by vanadium profiles and the runtime |
Adam Sadovsky | d21d95a | 2014-10-29 09:56:59 -0700 | [diff] [blame] | 20 | // implementations, but can also be used by any application that wants access to |
| 21 | // the flags and environment variables it supports. |
Cosmos Nicolaou | a18394e | 2014-09-11 13:18:32 -0700 | [diff] [blame] | 22 | package flags |