This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include "WebFramework.h" | |
| //////////////////////////////////////////////////////////////////////////////////////////////////////////////// | |
| // All the templating functions that make the installation of the various web handlers really easy. | |
| // See usage in .cpp file for clarification. | |
| //////////////////////////////////////////////////////////////////////////////////////////////////////////////// | |
| String nil_get() { return ""; } | |
| void nil_post(String val) { return; } |