Skip to content

Commit

Permalink
feat(pubky): make PubkyClient::request() public
Browse files Browse the repository at this point in the history
  • Loading branch information
Nuhvi committed Nov 13, 2024
1 parent 6e21959 commit 4b1bc1c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pubky/src/native.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}

Expand Down

0 comments on commit 4b1bc1c

Please sign in to comment.