Added README, and LICENSE.

This commit is contained in:
Micheal Smith
2025-08-11 23:37:18 -05:00
parent b86e46fe00
commit 5f30fdbf77
9 changed files with 182 additions and 63 deletions

21
src/commands.rs Normal file
View File

@@ -0,0 +1,21 @@
use color_eyre::Result;
use std::{
path::{Path, PathBuf},
};
#[derive(Clone, Debug)]
pub struct Root {
path: PathBuf,
}
impl Root {
pub fn new(path: impl AsRef<Path>) -> Self {
Root {
path: path.as_ref().to_owned(),
}
}
pub fn run_command(cmd_string: impl AsRef<str>) -> Result<()> {
todo!();
}
}