diff options
Diffstat (limited to 'server.cpp')
-rw-r--r-- | server.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/server.cpp b/server.cpp new file mode 100644 index 0000000..2ad9bcd --- /dev/null +++ b/server.cpp @@ -0,0 +1,10 @@ +#include "server.h" + +#include "http.h" +#include "https.h" + +int server(Config& config) +{ + //return HTTP::server(config); + return HTTPS::server(config); +} |