mirror of
https://github.com/KeyZox71/webserv.git
synced 2025-03-15 18:16:52 +01:00
21 lines
1.0 KiB
C++
21 lines
1.0 KiB
C++
|
/* ************************************************************************** */
|
||
|
/* */
|
||
|
/* ::: :::::::: */
|
||
|
/* webserv.cpp :+: :+: :+: */
|
||
|
/* +:+ +:+ +:+ */
|
||
|
/* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */
|
||
|
/* +#+#+#+#+#+ +#+ */
|
||
|
/* Created: 2025/01/20 16:33:31 by adjoly #+# #+# */
|
||
|
/* Updated: 2025/01/20 16:35:02 by adjoly ### ########.fr */
|
||
|
/* */
|
||
|
/* ************************************************************************** */
|
||
|
|
||
|
#include <iostream>
|
||
|
|
||
|
int main(int ac, char **av, char **env) {
|
||
|
(void)ac;
|
||
|
(void)av;
|
||
|
(void)env;
|
||
|
std::cout << "test" << std::endl;
|
||
|
}
|