aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/src/util/http/curl_response.rs
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2026-05-16 22:10:29 +0900
committernsfisis <nsfisis@gmail.com>2026-05-16 22:10:29 +0900
commit88bd20e885499ee3f3fff46b755527bad435c7df (patch)
tree8f7240474af510ac4ee5532ffd158aa62972d3ac /crates/shirabe/src/util/http/curl_response.rs
parent847c3a0132ccaa2e8482dd7f09d78d43b392893f (diff)
downloadphp-shirabe-88bd20e885499ee3f3fff46b755527bad435c7df.tar.gz
php-shirabe-88bd20e885499ee3f3fff46b755527bad435c7df.tar.zst
php-shirabe-88bd20e885499ee3f3fff46b755527bad435c7df.zip
feat(port): port CurlDownloader.php
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Diffstat (limited to 'crates/shirabe/src/util/http/curl_response.rs')
-rw-r--r--crates/shirabe/src/util/http/curl_response.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/shirabe/src/util/http/curl_response.rs b/crates/shirabe/src/util/http/curl_response.rs
index 97b9a4a..3c4f923 100644
--- a/crates/shirabe/src/util/http/curl_response.rs
+++ b/crates/shirabe/src/util/http/curl_response.rs
@@ -7,7 +7,7 @@ use super::response::Response;
#[derive(Debug)]
pub struct CurlResponse {
- inner: Response,
+ pub(crate) inner: Response,
curl_info: IndexMap<String, PhpMixed>,
}