1
2
3
4
5
6
7
/// Types for defining a `Collection`.
pub mod collection;
mod database;
/// Types for defining map/reduce-powered `View`s.
pub mod view;

pub use self::{collection::*, database::*, view::*};