1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Rust client for [Blyss](https://blyss.dev).
//!
//! Provides interfaces for privately reading data from Blyss buckets.
//! Also exposes a higher-level API for fetching Merkle proofs.
//!
//! Documentation for the Blyss service is at [docs.blyss.dev](https://docs.blyss.dev).

/// Low level functionality for accessing Blyss buckets.
pub mod api;

/// High level functionality for fetching Merkle proofs from Blyss buckets.
pub mod proof;

/// Error types for Blyss.
pub mod error;