p2panda-rs 0.5.0

All the things a panda needs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// SPDX-License-Identifier: AGPL-3.0-or-later

//! Traits used when implementing a custom storage provider for a p2panda client or node.
mod document_store;
mod entry_store;
mod log_store;
mod models;
mod operation_store;
mod storage_provider;

pub use document_store::DocumentStore;
pub use entry_store::EntryStore;
pub use log_store::LogStore;
pub use models::{AsStorageLog, EntryWithOperation};
pub use operation_store::OperationStore;
pub use storage_provider::StorageProvider;