summaryrefslogtreecommitdiffhomepage
path: root/main.cpp
diff options
context:
space:
mode:
authorRoland Reichwein <mail@reichwein.it>2022-12-31 13:45:31 +0100
committerRoland Reichwein <mail@reichwein.it>2022-12-31 13:45:31 +0100
commit06a5b6fe71abac44286adf9c9f439ad5a2e3a519 (patch)
treefba06f886db2b116030e2316646ebc83245a94d3 /main.cpp
parent921c799f3aa0163cd2eeda5a1c3c8d10d5989e9c (diff)
Added tests
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp10
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);
+}
+