Add stubs for getting information from the config
This commit is contained in:
parent
3c80632d4d
commit
edd37b0e88
1 changed files with 16 additions and 0 deletions
|
@ -8,6 +8,22 @@ use vcs::git::result::Result;
|
|||
|
||||
use vcs::git::action::StoreAction;
|
||||
|
||||
pub fn author_name(config: &Value) -> Result<&str> {
|
||||
unimplemented!()
|
||||
}
|
||||
|
||||
pub fn author_mail(config: &Value) -> Result<&str> {
|
||||
unimplemented!()
|
||||
}
|
||||
|
||||
pub fn committer_name(config: &Value) -> Result<&str> {
|
||||
unimplemented!()
|
||||
}
|
||||
|
||||
pub fn committer_mail(config: &Value) -> Result<&str> {
|
||||
unimplemented!()
|
||||
}
|
||||
|
||||
pub fn commit_interactive(config: &Value) -> bool {
|
||||
unimplemented!()
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue