1#![doc = include_str!("../README.md")] 2#![warn(missing_docs)] 3#![cfg_attr(docsrs, feature(doc_cfg))] 4 5mod backend; 6mod error; 7 8pub use backend::{FeOxDbBackend, FeOxDbBackendBuilder}; 9pub use error::FeOxDbError;