Add stubs for getting information from the config

This commit is contained in:
Matthias Beyer 2016-07-22 14:39:18 +02:00
parent 3c80632d4d
commit edd37b0e88

View file

@ -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!()
}