Asim Shankar | 95910b6 | 2014-10-31 22:02:29 -0700 | [diff] [blame] | 1 | // Package consts defines named constants whose values are interpreted by the flags package. |
| 2 | package consts |
| 3 | |
| 4 | const ( |
| 5 | // Environment variable whose value points to a directory containing |
| 6 | // the state of a Principal. (Private key, blessings, recognized root |
| 7 | // certificates etc.) |
| 8 | VeyronCredentials = "VEYRON_CREDENTIALS" |
| 9 | // Prefix of all environment variables that point to roots of the |
| 10 | // veyron namespace, used to resolve non-rooted object names. |
| 11 | NamespaceRootPrefix = "NAMESPACE_ROOT" |
| 12 | ) |