RType
main.cpp
Go to the documentation of this file.
1 /*
2 ** EPITECH PROJECT, 2023
3 ** RType
4 ** File description:
5 ** main.cpp
6 */
7 
8 #include "Server.hpp"
9 #include <iostream>
10 
11 int main(int ac, char **av)
12 {
13  int port = av[1] ? atoi(av[1]) : 4242;
14  Server server(port);
15  server.run();
16  return 0;
17 }