Addded Romeo that generates some doc. WIP.

This commit is contained in:
2026-07-18 18:58:29 -04:00
parent 446670bd29
commit 0c583b58da
120 changed files with 6167 additions and 18 deletions
+22
View File
@@ -0,0 +1,22 @@
#pragma once
#include <Core/Common/String.h>
namespace Romeo
{
class HttpClient
{
public:
// Sends a POST request over HTTP/HTTPS.
// Response data is allocated on the provided arena and returned in outResponse.
[[nodiscard]] static bool Post(
Juliet::Arena* arena,
const Juliet::String& host,
int port,
const Juliet::String& path,
bool isHttps,
const Juliet::String& requestBody,
Juliet::String& outResponse
);
};
}