Adding some IPC.

This commit is contained in:
Micheal Smith
2025-11-09 00:02:38 -06:00
parent 7f7981d6cd
commit 5d390ee9f3
11 changed files with 174 additions and 64 deletions

View File

@@ -1,8 +1,5 @@
use color_eyre::Result;
use std::path::{
Path,
PathBuf,
};
use std::path::{Path, PathBuf};
#[derive(Clone, Debug)]
pub struct Root {
@@ -16,7 +13,7 @@ impl Root {
}
}
pub fn run_command(cmd_string: impl AsRef<str>) -> Result<()> {
pub fn run_command(_cmd_string: impl AsRef<str>) -> Result<()> {
todo!();
}
}