add turnaround time logging
Some checks failed
Docker Build & Publish / build (push) Failing after 1s

This commit is contained in:
Nicholas Orlowsky 2025-02-05 09:32:21 -05:00
parent f930792a11
commit 10ca7f9f51
Signed by: nickorlow
GPG key ID: 838827D8C4611687
4 changed files with 49 additions and 8 deletions

View file

@ -3,8 +3,6 @@
#include <string>
#include <unordered_map>
#include "header_query.hpp"
#include "constants.hpp"
#include <optional>
namespace anthracite::http {
@ -13,7 +11,7 @@ private:
int _status_code;
std::string* _content;
std::string _content_noref;
std::unordered_map<std::string, header> _headers; // kinda goofy, whatever
std::unordered_map<std::string, header> _headers;
public:
response();