noosphere-sphere 0.11.0+deprecated

High-level access to content, address books and other features of spheres
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Sphere content is a storage space for any files that the sphere owner wishes to associate
//! with a public "slug", that is addressable by them or others who have replicated the sphere
//! data.

mod decoder;
mod file;
mod read;
mod write;

pub use decoder::*;
pub use file::*;
pub use read::*;
pub use write::*;