pub fn default_client() -> Result<Client, AppleCodesignError>
Expand description

Obtain the default Client to use for HTTP requests.

Examples found in repository?
src/stapling.rs (line 143)
141
142
143
144
145
    pub fn new() -> Result<Self, AppleCodesignError> {
        Ok(Self {
            client: default_client()?,
        })
    }