generated from PlexSheep/rs-base
16 lines
264 B
Rust
16 lines
264 B
Rust
|
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!()
|
||
|
}
|