| 21 | CUserData userGeorge; |
| 22 | |
| 23 | void onIndex(HttpRequest& request, HttpResponse& response) |
| 24 | { |
| 25 | auto tmpl = new TemplateFileStream(F("index.html")); |
| 26 | //auto& vars = tmpl->variables(); |
| 27 | //vars["counter"] = String(counter); |
| 28 | response.sendNamedStream(tmpl); // this template object will be deleted automatically |
| 29 | } |
| 30 | |
| 31 | void onFile(HttpRequest& request, HttpResponse& response) |
| 32 | { |
nothing calls this directly
no test coverage detected