drupal_kit 0.3.3

Flexible Drupal HTTP client supporting a variety of popular contrib modules
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub mod auth;
mod client;
mod drupalkit_builder;
pub mod http_client;

pub use client::Drupalkit;
pub use drupalkit_builder::DrupalkitBuilder as Builder;

pub mod http {
    pub use http::Method;
    pub use http::HeaderName;
    pub use http::HeaderValue;
}

#[cfg(feature = "simple-oauth")]
pub mod simple_oauth;