summaryrefslogtreecommitdiffstats
path: root/src/service.rs
diff options
context:
space:
mode:
authorToby Vincent <tobyv@tobyvin.dev>2024-10-01 14:19:54 -0500
committerToby Vincent <tobyv@tobyvin.dev>2024-10-01 14:19:54 -0500
commit117d33fc478bf529094850b1fe40c558f04c9865 (patch)
tree223ad4091c71aa3f4f098524c7b27bf34298901f /src/service.rs
parentfe16a923190243dfde5db6ceff2ef0bcf9158926 (diff)
feat: added command service
Diffstat (limited to 'src/service.rs')
-rw-r--r--src/service.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/service.rs b/src/service.rs
index 8e0863c..3e37503 100644
--- a/src/service.rs
+++ b/src/service.rs
@@ -16,6 +16,7 @@ use crate::{Error, Status};
pub mod http;
pub mod systemd;
pub mod tcp;
+pub mod command;
pub type ServiceHandles = Arc<HashMap<String, ServiceHandle>>;