Skip to main content

cloudillo_types/
lib.rs

1//! Shared types, adapter traits, and core utilities for the Cloudillo platform.
2//!
3//! This crate contains the foundational types that are shared between the
4//! server crate and all adapter implementations. Extracting these into a
5//! separate crate allows adapter crates to compile in parallel with the
6//! server's feature modules.
7
8pub mod abac;
9pub mod action_types;
10pub mod address;
11pub mod auth_adapter;
12pub mod blob_adapter;
13pub mod crdt_adapter;
14pub mod error;
15pub mod extract;
16pub mod hasher;
17pub mod identity_provider_adapter;
18pub mod meta_adapter;
19pub mod prelude;
20pub mod rtdb_adapter;
21pub mod types;
22pub mod utils;
23pub mod worker;
24
25// vim: ts=4