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