#include <iostream>
|
|
#include "webserver.hh"
|
|
|
|
int main()
|
|
{
|
|
pEp::Webserver web{net::ip::address::from_string("127.0.0.1"), 8080, "htdocs"};
|
|
return 0;
|
|
}
|
|
|