p2panda-auth 0.6.1

Decentralised group management with fine-grained, per-member permissions
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// SPDX-License-Identifier: MIT OR Apache-2.0

//! Types and methods for ordering and processing groups operations.
mod args;
mod operation;
#[allow(clippy::module_inception)]
#[cfg(feature = "processor")]
mod processor;

pub use args::GroupsArgs;
pub use operation::GroupsOperation;
pub use processor::{GroupsProcessor, GroupsProcessorError};