1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
//! This crate provides the traits encapsulating the behaviors which are often provided by
//! data access layer parts of many applications. Goal of the crate is to provide simple interfaces
//! for data-access operations which often repeat themselves across many applications.
//!
//! Value proposition of the crate is that you should be able to start working on higher-level logic
//! of your application before you have the complete implementation of the data-access layer.


pub mod read;
pub mod create;
pub mod update;
pub mod delete;