1 2 3 4 5 6 7
use crate::input::options::Input; use color_eyre::Result; pub fn create_project(options: &Input) -> Result<()> { println!("{options:?}"); Ok(()) }