1 2 3 4 5 6 7 8 9 10 11
use crate::errors::Result; use crate::plumbing::Oid; #[derive(Debug, StructOpt)] pub struct LogOptions { commit: Oid, } pub async fn log_cmd(options: LogOptions) -> Result<()> { Ok(()) }