Add (unimplemented) config helper functions

This commit is contained in:
Matthias Beyer 2016-05-15 00:47:43 +02:00
parent 61c3519d45
commit 7f02f818da
1 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
pub fn commit_interactive(config: &Value) -> bool {
unimplemented!()
}
pub fn commit_message(config: &Value, action: StoreAction) -> Option<String> {
if commit_interactive(config) {
unimplemented!()
} else {
unimplemented!()
}
}