autocrate/src/git/mod.rs

16 lines
264 B
Rust
Raw Normal View History

use git2;
use crate::{config::Config, error::Result};
pub async fn tag(_cfg: &Config) -> Result<String> {
todo!()
}
pub async fn push(_cfg: &Config) -> Result<()> {
todo!()
}
pub async fn get_commit_sig(_cfg: &Config) -> Result<String> {
todo!()
}