Skip to content

Commit

Permalink
Re-export curl and ureq
Browse files Browse the repository at this point in the history
  • Loading branch information
ramosbugs committed Mar 2, 2024
1 parent 85ea470 commit aff7471
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/curl.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ use http::status::StatusCode;

use std::io::Read;

pub use curl;

/// Error type returned by failed curl HTTP requests.
#[derive(Debug, thiserror::Error)]
pub enum Error {
Expand Down
2 changes: 2 additions & 0 deletions src/ureq.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ use http::{

use std::io::Read;

pub use ureq;

/// Error type returned by failed ureq HTTP requests.
#[derive(Debug, thiserror::Error)]
pub enum Error {
Expand Down

0 comments on commit aff7471

Please sign in to comment.