dittolive-ditto 5.0.0

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
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Use [`ditto.auth()`] to obtain a [`DittoAuthenticator`] to view and manage auth settings.
//!
//! Provides access to authentication information and methods for logging on to Ditto Cloud.
//! Relevant when using [`DittoConfigConnect::Server`] mode.
//!
//! [`ditto.auth()`]: crate::Ditto::auth
//! [`DittoConfigConnect::Server`]: crate::DittoConfigConnect::Server

mod authenticator;
mod login_provider;

pub use authenticator::{AuthenticationClientFeedback, DittoAuthenticator};
pub use login_provider::DittoAuthenticationEventHandler;