You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
329 B
16 lines
329 B
#include "webserv.hpp"
|
|
|
|
int main(int ac, char **av) {
|
|
|
|
if (ac > 1) {
|
|
|
|
cout << "Parsing configuration file...\n";
|
|
JSONParser parser(av[1]);
|
|
JSONNode *conf = parser.parse();
|
|
cout << "Configuration parsed.\n";
|
|
|
|
cout << "Setting environment...\n";
|
|
Env env(conf);
|
|
}
|
|
return (0);
|
|
}
|
|
|