summaryrefslogtreecommitdiffstats
path: root/crates/runner/src/lib.rs
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2021-10-26 23:57:33 +0200
committerMatthias Schiffer <mschiffer@universe-factory.net>2021-10-26 23:57:33 +0200
commitddb92b57fb92a43dcd3ac03ba987636bbc5d1843 (patch)
tree8aa9c765e56a330239671dae4a664dc909a69c78 /crates/runner/src/lib.rs
parentb24d2670bd5bbd70dabddc489e96cf0ba1f9e8ba (diff)
downloadrebel-ddb92b57fb92a43dcd3ac03ba987636bbc5d1843.tar
rebel-ddb92b57fb92a43dcd3ac03ba987636bbc5d1843.zip
runner: move Checkable trait into separabe module
Diffstat (limited to 'crates/runner/src/lib.rs')
-rw-r--r--crates/runner/src/lib.rs7
1 files changed, 2 insertions, 5 deletions
diff --git a/crates/runner/src/lib.rs b/crates/runner/src/lib.rs
index 81e328e..d0cc531 100644
--- a/crates/runner/src/lib.rs
+++ b/crates/runner/src/lib.rs
@@ -25,12 +25,9 @@ use nix::{
use uds::UnixSeqpacketConn;
use common::{error::*, types::*};
-use util::Checkable;
-use self::{
- jobserver::Jobserver,
- util::{clone, unix},
-};
+use jobserver::Jobserver;
+use util::{checkable::Checkable, clone, unix};
#[derive(Debug, Clone)]
pub struct Options {