HTTPServer/HTTPRequest.cpp
2022-06-29 11:38:44 -07:00

8 lines
129 B
C++

#include "HTTPRequest.h"
namespace http {
HTTPRequest::HTTPRequest(coreutils::ZString &in) : request(in), message(in) {}
}