#![doc = include_str!("../README.md")]
#![forbid(unsafe_code)]
#![warn(missing_docs)]
pub struct SqliteBackend {
_private: (),
}
impl SqliteBackend {
pub fn open(_path: &str) -> Result<Self, std::io::Error> {
todo!("SqliteBackend is not yet implemented")
}
pub fn in_memory() -> Result<Self, std::io::Error> {
todo!("SqliteBackend is not yet implemented")
}
#[cfg(feature = "encryption")]
pub fn open_encrypted(_path: &str, _password: &str) -> Result<Self, std::io::Error> {
todo!("SqliteBackend encryption is not yet implemented")
}
}