IQ.Pilot Release Commit @ a0d13ad

This commit is contained in:
IQ.Lvbs CI [bot]
2026-08-04 14:48:16 -05:00
commit 2b6f6d7d3e
4529 changed files with 1131858 additions and 0 deletions

15
tools/replay/api.h Normal file
View File

@@ -0,0 +1,15 @@
#pragma once
#include <curl/curl.h>
#include <string>
#include "common/util.h"
#include "third_party/json11/json11.hpp"
namespace CommaApi2 {
const std::string BASE_URL = util::getenv("API_HOST", "https://api-iqlabs.konn3kt.com").c_str();
std::string create_token(bool use_jwt, const json11::Json& payloads = {}, int expiry = 3600);
std::string httpGet(const std::string &url, long *response_code = nullptr);
} // namespace CommaApi2