#pragma once #include #include #include "json.hpp" using Json = nlohmann::json; bool HttpPost(const char* url, const Json& payload); bool HttpGet(const char* url, std::function onSuccess, std::function onError = nullptr);