cloudillo-types 0.8.16

Shared types, adapter traits, and error types for the Cloudillo federated collaboration platform
Documentation
// SPDX-FileCopyrightText: Szilárd Hajba
// SPDX-License-Identifier: LGPL-3.0-or-later

//! Shared types, adapter traits, and core utilities for the Cloudillo platform.
//!
//! This crate contains the foundational types that are shared between the
//! server crate and all adapter implementations. Extracting these into a
//! separate crate allows adapter crates to compile in parallel with the
//! server's feature modules.

pub mod abac;
pub mod action_types;
pub mod address;
pub mod auth_adapter;
pub mod blob_adapter;
pub mod crdt_adapter;
pub mod error;
pub mod extract;
pub mod hasher;
pub mod identity_provider_adapter;
pub mod meta_adapter;
pub mod prelude;
pub mod reactions;
pub mod rtdb_adapter;
pub mod types;
pub mod utils;
pub mod worker;

// vim: ts=4