#pragma once #include "curlOp.hpp" #include "logTypes.hpp" #include #include #include namespace WebStat { class UserAgentLookupOperation : public CurlOperation { public: UserAgentLookupOperation(EntityId entityId); void whenComplete(DB::Connection *) const override; EntityId entityId; }; std::unique_ptr curlGetUserAgentDetail( EntityId entityId, std::string_view uas, const char * baseUrl); }