dwh 0.7.1

A library to use the digitronic protocol dwh
Documentation
1
2
3
4
5
6
7
8
9
use reqwest::RequestBuilder;

pub mod add_headers;
pub mod basic_auth;

#[async_trait::async_trait]
pub trait ReqwestHooks {
    async fn before_send(&self, req: RequestBuilder) -> super::Result<RequestBuilder>;
}