diff options
Diffstat (limited to 'main.cpp')
-rw-r--r-- | main.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/main.cpp b/main.cpp new file mode 100644 index 0000000..c0e1884 --- /dev/null +++ b/main.cpp @@ -0,0 +1,10 @@ +// The webserver main() function. The actual webserver resides in +// webserver.cpp as webserver() for testability. + +#include "webserver.h" + +int main(int argc, char* argv[]) +{ + return webserver(argc, argv); +} + |