---------- StringVar ---------- StringVar is a registered environment variable that holds a string value.
| 120 | |
| 121 | // StringVar is a registered environment variable that holds a string value. |
| 122 | type StringVar struct { |
| 123 | v Var |
| 124 | } |
| 125 | |
| 126 | // RegisterStringVar registers a string environment variable and returns a typed accessor. |
| 127 | func RegisterStringVar(name, defaultValue, description string, component Component) StringVar { |
nothing calls this directly
no outgoing calls
no test coverage detected