| 20 | } |
| 21 | |
| 22 | type runtimeVariables struct { |
| 23 | runtimeVariablesMutex sync.Mutex |
| 24 | runtimeVariables map[string]interface{} |
| 25 | } |
| 26 | |
| 27 | func (c *runtimeVariables) GetRuntimeVariable(key string) (interface{}, bool) { |
| 28 | c.runtimeVariablesMutex.Lock() |
nothing calls this directly
no outgoing calls
no test coverage detected