blob: c0e18844fa06f3ca17512609d86413feb2b27fbf (
plain)
1
2
3
4
5
6
7
8
9
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);
}
|