blob: 7ed0112ca8e7f02d00fcfd0bb3ac50d27dd6c3d0 [file] [log] [blame]
Asim Shankar95910b62014-10-31 22:02:29 -07001// Package consts defines named constants whose values are interpreted by the flags package.
2package consts
3
4const (
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)