fix: changes to update to the last database engine trait definition

This commit is contained in:
Tglman 2022-01-13 22:37:19 +00:00
parent 1cc41937bd
commit f9977ca64f
2 changed files with 12 additions and 7 deletions

View file

@ -18,7 +18,12 @@ pub mod rocksdb;
#[cfg(feature = "persy")]
pub mod persy;
#[cfg(any(feature = "sqlite", feature = "rocksdb", feature = "heed", feature="persy"))]
#[cfg(any(
feature = "sqlite",
feature = "rocksdb",
feature = "heed",
feature = "persy"
))]
pub mod watchers;
pub trait DatabaseEngine: Send + Sync {