Created
July 27, 2019 15:04
-
-
Save srfrnk/ab330799a4982e4d489471a9a1337abf to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type Var struct { | |
. | |
. | |
. | |
// EnvRef refers to a variable from the process environment whose value will be extracted for use in | |
// replacing $(FOO). | |
EnvRef EnvVar `json:"envref" yaml:"envref"` | |
} | |
type EnvVar struct { | |
Name string `json:"name" yaml:"name"` | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment