weedforge 0.1.2

Rust-first, Python-friendly SDK for SeaweedFS
Documentation
1
2
3
4
5
6
7
8
9
//! Infrastructure layer for weedforge.
//!
//! This module implements the domain ports using HTTP communication.

pub mod ha;
pub mod http;

pub use ha::{HaMasterClient, HaMasterClientBuilder, HaMasterConfig, MasterSelectionStrategy};
pub use http::{create_http_client, HttpClientConfig, HttpMasterClient, HttpVolumeClient};