(conf map[string]interface{})
| 205 | } |
| 206 | |
| 207 | func ensureOpenclawUpdateDefaults(conf map[string]interface{}) { |
| 208 | update := ensureChildMap(conf, "update") |
| 209 | if _, ok := update["checkOnStart"]; !ok { |
| 210 | update["checkOnStart"] = false |
| 211 | } |
| 212 | } |
| 213 | |
| 214 | func setTrustedProxies(gateway map[string]interface{}) { |
| 215 | proxies := make([]string, 0, 4) |
no test coverage detected