From 4b1bc1c4e9aefe917602ac22b20e2f2ea3548708 Mon Sep 17 00:00:00 2001 From: nazeh Date: Wed, 13 Nov 2024 15:48:17 +0300 Subject: [PATCH] feat(pubky): make PubkyClient::request() public --- pubky/src/native.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pubky/src/native.rs b/pubky/src/native.rs index 4a12710..206da44 100644 --- a/pubky/src/native.rs +++ b/pubky/src/native.rs @@ -252,7 +252,8 @@ impl PubkyClient { // === HTTP === - pub(crate) fn request(&self, method: reqwest::Method, url: Url) -> RequestBuilder { + /// Make an HTTP(s) request to a URL with a Pkarr TLD + pub fn request(&self, method: reqwest::Method, url: Url) -> RequestBuilder { self.http.request(method, url) }