Make the internal sled db public

main
Joey Hines 2023-01-18 17:21:54 -07:00
parent fb990ce233
commit e5d2bd0b82
Signed by: joeyahines
GPG Key ID: 995E531F7A569DDB
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ fn option_bytes_to_model<T: JdbModel>(bytes: Option<IVec>, id: u64) -> Result<T>
}
pub struct Database {
pub(crate) db: sled::Db,
pub db: sled::Db,
}
impl Database {