| 27 | }; |
| 28 | |
| 29 | struct WebParamMap { |
| 30 | std::map<String, String> values; |
| 31 | |
| 32 | bool has(const char *key) const { return values.find(String(key)) != values.end(); } |
| 33 | String get(const char *key) const { |
| 34 | auto it = values.find(String(key)); |
| 35 | return it == values.end() ? String("") : it->second; |
| 36 | } |
| 37 | }; |
| 38 | |
| 39 | int command = 0; |
| 40 | bool updateFromSd_var = false; |
nothing calls this directly
no outgoing calls
no test coverage detected