Add Method Routing and case insensitive routing patterns

This commit is contained in:
Pablu23
2024-07-08 16:37:28 +02:00
parent 986be64e03
commit 925ff203a4
5 changed files with 37 additions and 56 deletions

View File

@@ -89,5 +89,6 @@ void Request::Print() {
}
}
std::string Request::Method() { return m_method; }
bool Request::HasData() { return m_payload.size() != 0; }
std::vector<std::byte> Request::Data() { return m_payload; }