feat(pubky): make PubkyClient::request() public

This commit is contained in:
nazeh
2024-11-13 15:48:17 +03:00
parent 6e21959d24
commit 4b1bc1c4e9

View File

@@ -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)
}