summaryrefslogtreecommitdiffhomepage
path: root/server.cpp
blob: 2ad9bcdfe66c3b3abed63672ffbce39b3c5d6be7 (plain)
1
2
3
4
5
6
7
8
9
10
#include "server.h"

#include "http.h"
#include "https.h"

int server(Config& config)
{
 //return HTTP::server(config);
 return HTTPS::server(config);
}