Initial commit

This commit is contained in:
2025-09-08 09:41:16 +03:00
commit 418d33a6de
5 changed files with 90 additions and 0 deletions

8
app/main.cpp Normal file
View File

@@ -0,0 +1,8 @@
#include <print>
#include "../src/server.hpp"
int main() {
SimpleHttpServer server;
server.start_listening(8080);
std::println("Bye!");
}