From 06a5b6fe71abac44286adf9c9f439ad5a2e3a519 Mon Sep 17 00:00:00 2001 From: Roland Reichwein Date: Sat, 31 Dec 2022 13:45:31 +0100 Subject: Added tests --- main.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 main.cpp (limited to 'main.cpp') 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); +} + -- cgit v1.2.3