use clap::Args; use mozart_core::MOZART_VERSION; use mozart_core::console::IoInterface; use mozart_core::console_writeln; #[derive(Args)] pub struct AboutArgs {} pub async fn execute( _args: &AboutArgs, _cli: &super::Cli, io: std::sync::Arc>>, ) -> anyhow::Result<()> { console_writeln!( io, r#"Mozart - Dependency Manager for PHP - version {MOZART_VERSION} Mozart is a dependency manager tracking local dependencies of your projects and libraries. See https://getcomposer.org/ for more information."#, ); Ok(()) }