From b082d6cd8d500a9bcaaf991f34e685278241c992 Mon Sep 17 00:00:00 2001 From: Chaoscaot Date: Thu, 16 Mar 2023 21:33:23 +0100 Subject: [PATCH] Fix Imports --- schemsearch-cli/src/main.rs | 1 + schemsearch-cli/src/types.rs | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) 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};