summaryrefslogtreecommitdiffhomepage
path: root/server.h
diff options
context:
space:
mode:
Diffstat (limited to 'server.h')
-rw-r--r--server.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/server.h b/server.h
new file mode 100644
index 0000000..5ad21ff
--- /dev/null
+++ b/server.h
@@ -0,0 +1,9 @@
+#pragma once
+
+#include "config.h"
+
+using namespace std::string_literals;
+
+static const std::string VersionString{ "Webserver "s + std::string{VERSION} };
+
+int server(Config& config);