dittolive-ditto 3.0.0-alpha2

Ditto is a peer to peer cross-platform database that allows mobile, web, IoT and server apps to sync with or without an internet connection.
Documentation
#[allow(unused_imports)]
#[macro_use]
extern crate ext_trait;
extern crate ffi_sdk;

#[macro_use]
pub mod utils;

mod disk_usage;

pub mod auth;

pub mod ditto;

pub mod error;

pub mod identity;

pub mod fs;
pub mod prelude;

pub mod observer;

pub mod store;

pub mod subscription;

pub mod transport;

pub mod types;

#[cfg(test)]
pub(in crate) mod test_helpers;