blob: 6d7807a61e1f166c86873828b75f8d28c1b455ef [file] [log] [blame]
Jiri Simsad7616c92015-03-24 23:44:30 -07001// 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 Wang8c4e5cc2015-04-09 11:30:52 -07005// 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 Nicolaoud811b072014-10-28 17:46:27 -070011//
Adam Sadovskyd21d95a2014-10-29 09:56:59 -070012// Flags are defined as 'groups' of related flags so that the caller may choose
Todd Wang8c4e5cc2015-04-09 11:30:52 -070013// 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 Sadovskyd21d95a2014-10-29 09:56:59 -070016// 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 Sivakumard1cc6e02015-03-16 13:58:49 -070019// In general, this package will be used by vanadium profiles and the runtime
Adam Sadovskyd21d95a2014-10-29 09:56:59 -070020// implementations, but can also be used by any application that wants access to
21// the flags and environment variables it supports.
Cosmos Nicolaoua18394e2014-09-11 13:18:32 -070022package flags