working commit

This commit is contained in:
2026-04-24 16:50:15 +02:00
parent 37d9ee63cc
commit ace92da151
26 changed files with 3879 additions and 1893 deletions
+27
View File
@@ -0,0 +1,27 @@
#ifndef NETHANDLER_HPP
#define NETHANDLER_HPP
#include <expected>
#include <string>
#include <vector>
#include <span>
#include <iostream>
#include <sstream>
#include <netclient.hpp>
class NetHandler {
public:
NetHandler(void);
virtual std::expected<void, std::string> Handle(std::string& req, std::string& res);
virtual ~NetHandler(void);
NetHandler(const NetHandler&) = delete;
NetHandler& operator=(const NetHandler&) = delete;
};
#endif