Origin returns the underlying source object.
()
| 86 | |
| 87 | // Origin returns the underlying source object. |
| 88 | func (s *EnvPropertySource) Origin() string { |
| 89 | return "os.Environ()" |
| 90 | } |
| 91 | |
| 92 | // Value method returns the value of the environment property with the given key. |
| 93 | func (s *EnvPropertySource) Value(key string) (any, bool) { |
no outgoing calls