diff --git a/schemsearch-cli/src/main.rs b/schemsearch-cli/src/main.rs index fb705df..f76ae26 100644 --- a/schemsearch-cli/src/main.rs +++ b/schemsearch-cli/src/main.rs @@ -37,6 +37,7 @@ use schemsearch_sql::load_all_schematics; #[cfg(feature = "sql")] use crate::types::SqlSchematicSupplier; use indicatif::{ParallelProgressIterator, ProgressStyle}; +use schemsearch_files::Schematic; fn main() { #[allow(unused_mut)] diff --git a/schemsearch-cli/src/types.rs b/schemsearch-cli/src/types.rs index c2127c7..ee0451f 100644 --- a/schemsearch-cli/src/types.rs +++ b/schemsearch-cli/src/types.rs @@ -18,7 +18,6 @@ use std::path::PathBuf; #[cfg(feature = "sql")] use futures::executor::block_on; -use schemsearch_files::Schematic; #[cfg(feature = "sql")] use schemsearch_sql::{load_schemdata, SchematicNode};