-- stringToString Value
| 10 | |
| 11 | // -- stringToString Value |
| 12 | type stringToStringValue struct { |
| 13 | value *map[string]string |
| 14 | changed bool |
| 15 | } |
| 16 | |
| 17 | func newStringToStringValue(val map[string]string, p *map[string]string) *stringToStringValue { |
| 18 | ssv := new(stringToStringValue) |
nothing calls this directly
no outgoing calls
no test coverage detected