From 41f01c780f86173a3e1a487fd25dfdf293d9b982 Mon Sep 17 00:00:00 2001 From: Mikolaj Wielgus Date: Sun, 29 Sep 2024 16:18:54 +0200 Subject: [PATCH] cli: fix build error due to wrong import path --- src/bin/topola/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/topola/main.rs b/src/bin/topola/main.rs index ddf674a..f0edde7 100644 --- a/src/bin/topola/main.rs +++ b/src/bin/topola/main.rs @@ -1,8 +1,8 @@ use clap::Parser; use std::fs::File; use std::io::BufReader; +use topola::autorouter::execute::Command; use topola::autorouter::history::History; -use topola::autorouter::invoker::Command; use topola::autorouter::invoker::Invoker; use topola::autorouter::selection::PinSelection; use topola::autorouter::Autorouter;