pub mod backends;
pub mod error;
pub mod factory;
pub mod persistence;
pub use backends::*;
pub use error::{PersistenceError, Result};
pub use factory::{PersistFactory, PersistenceConfig};
pub use persistence::{Persistence, PersistentState, UpdateStrategy};
pub const VERSION: &str = env!("CARGO_PKG_VERSION");
pub fn init() -> Result<()> {
Ok(())
}