feat: make version backends sync

This commit is contained in:
DecDuck
2025-12-01 11:25:53 +11:00
parent 7c49a5cacb
commit 724415df78
+1 -1
View File
@@ -13,7 +13,7 @@ pub mod backends;
pub mod types;
pub fn create_backend_constructor<'a>(
path: &Path,
) -> Option<Box<dyn FnOnce() -> Result<Box<dyn VersionBackend + Send + 'a>>>> {
) -> Option<Box<dyn FnOnce() -> Result<Box<dyn VersionBackend + Send + Sync + 'a>>>> {
if !path.exists() {
return None;
}