tlpt 0.8.0

A set of protocols for building local-first distributed systems
Documentation
// TODO-V1(design): #40 Teams with invitations and protected member identities
// TODO-V1(design): #41 Attachments for immutable files (with quality versions?)

// TODO-V1(design): #44 Identities take the form of emails username+scope@usegarden.com -> that server can act as an identity provider
// TODO(design): #45 Allow user to create arbitrary profiles/inboxes in the shape anon892347@usegarden.com



mod account;
mod conventions;
mod doc;
mod invitation;
mod doc_content;
mod team;
mod node;

pub use doc::{DocID, Doc};
pub use team::{TeamID, Team};
pub use invitation::{Invitation, InvitationToken};
pub use doc_content::{AnyContentType, ContentType, jmbl_content::JMBLContent, binary_stream_content::{BinaryStreamContent, BinaryStreamItem}};
pub use node::{Tlpt};