rust/chg/src/clientext.rs
changeset 44689 6bef9d43cc55
parent 44684 80d6e3415636
child 44693 61fda2dbc522
--- a/rust/chg/src/clientext.rs	Fri Apr 10 21:35:16 2020 +0900
+++ b/rust/chg/src/clientext.rs	Fri Apr 10 21:38:08 2020 +0900
@@ -15,10 +15,10 @@
 use tokio_hglib::protocol::{OneShotQuery, OneShotRequest};
 use tokio_hglib::{Client, Connection};
 
-use super::attachio::AttachIo;
-use super::message::{self, Instruction};
-use super::runcommand::ChgRunCommand;
-use super::uihandler::SystemHandler;
+use crate::attachio::AttachIo;
+use crate::message::{self, Instruction};
+use crate::runcommand::ChgRunCommand;
+use crate::uihandler::SystemHandler;
 
 pub trait ChgClientExt<C>
 where