Add makefile and split request and response to header files

This commit is contained in:
Pablu23
2024-07-08 03:07:46 +02:00
parent a32934d4bc
commit 752cb229c3
6 changed files with 200 additions and 165 deletions

5
Makefile Normal file
View File

@@ -0,0 +1,5 @@
run: build
./server
build:
g++ -std=c++20 server.cpp request.cpp response.cpp -g -o server