Add (unimplemented) config helper functions
This commit is contained in:
parent
61c3519d45
commit
7f02f818da
1 changed files with 11 additions and 0 deletions
|
@ -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!()
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue