File tree Expand file tree Collapse file tree 5 files changed +6
-3
lines changed
Expand file tree Collapse file tree 5 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -36,4 +36,3 @@ color-eyre = { workspace = true }
3636tokio = { workspace = true }
3737thiserror = { workspace = true }
3838tracing = { workspace = true }
39- notify = { workspace = true }
Original file line number Diff line number Diff line change @@ -13,7 +13,6 @@ use malbox_utils::SampleStore;
1313use std:: sync:: Arc ;
1414
1515pub mod error;
16- mod image_store;
1716mod providers;
1817mod provisioners;
1918
@@ -39,7 +38,7 @@ pub async fn run(config: &Config) -> error::Result<()> {
3938 if let Some ( ref images_config) = config. images {
4039 let store_path = std:: path:: PathBuf :: from ( & images_config. store_path ) ;
4140 if store_path. exists ( ) {
42- image_store:: spawn_image_watcher ( store_path, db. clone ( ) ) ;
41+ malbox_utils :: image_store:: spawn_image_watcher ( store_path, db. clone ( ) ) ;
4342 } else {
4443 tracing:: warn!(
4544 "Image store path does not exist: {}" ,
Original file line number Diff line number Diff line change @@ -16,3 +16,7 @@ tokio = { workspace = true }
1616thiserror = { workspace = true }
1717tracing = { workspace = true }
1818tempfile = { workspace = true }
19+
20+ # image_store
21+ malbox-database = { path = " ../malbox-database" }
22+ notify = { workspace = true }
File renamed without changes.
Original file line number Diff line number Diff line change 11pub mod hashing;
2+ pub mod image_store;
23pub mod storage;
34
45pub use storage:: SampleStore ;
You can’t perform that action at this time.
0 commit comments