mirror of
https://github.com/kemko/nomad.git
synced 2026-01-05 01:45:44 +03:00
12 lines
195 B
Go
12 lines
195 B
Go
package addrs
|
|
|
|
// InputVariable is the address of an input variable.
|
|
type InputVariable struct {
|
|
referenceable
|
|
Name string
|
|
}
|
|
|
|
func (v InputVariable) String() string {
|
|
return "var." + v.Name
|
|
}
|