1 2 3 4 5 6 7 8 9
//! A [`crate::prolly`] reference implementation. pub mod create; pub mod read; pub mod update; pub use { create::Create, read::Read, update::{Change, Update}, };