-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
29 lines (27 loc) · 1.14 KB
/
main.cpp
File metadata and controls
29 lines (27 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* main.cpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: hdagdagu <hdagdagu@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/11/01 15:36:49 by hdagdagu #+# #+# */
/* Updated: 2024/03/11 17:23:48 by hdagdagu ### ########.fr */
/* */
/* ************************************************************************** */
#include "include/header.hpp"
int main(int ac, char **av)
{
try
{
Parser parsedData(ac, av);
// parsedData.dump();
Wb_Server _Wb_Server(parsedData);
}
catch (CustomException ce)
{
std::cerr << ce.what() << std::endl;
return (1);
}
return (0);
}