Skip to main content

p2panda_auth/processor/
mod.rs

1// SPDX-License-Identifier: MIT OR Apache-2.0
2
3//! Types and methods for ordering and processing groups operations.
4mod args;
5mod operation;
6#[allow(clippy::module_inception)]
7#[cfg(feature = "processor")]
8mod processor;
9
10pub use args::GroupsArgs;
11pub use operation::GroupsOperation;
12pub use processor::{GroupsProcessor, GroupsProcessorError};