summaryrefslogtreecommitdiffstats
path: root/crates/core/tedge/src/command.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/core/tedge/src/command.rs')
-rw-r--r--crates/core/tedge/src/command.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/crates/core/tedge/src/command.rs b/crates/core/tedge/src/command.rs
index 530d519b..6637d0da 100644
--- a/crates/core/tedge/src/command.rs
+++ b/crates/core/tedge/src/command.rs
@@ -1,5 +1,3 @@
-use crate::system_services::*;
-use std::sync::Arc;
use tedge_users::UserManager;
/// A trait to be implemented by all tedge sub-commands.
@@ -152,6 +150,5 @@ pub trait BuildCommand {
pub struct BuildContext {
pub config_repository: tedge_config::TEdgeConfigRepository,
pub config_location: tedge_config::TEdgeConfigLocation,
- pub service_manager: Arc<dyn SystemServiceManager>,
pub user_manager: UserManager,
}