diff --git a/libimagstorestdhook/src/vcs/git/config.rs b/libimagstorestdhook/src/vcs/git/config.rs index e69de29b..0269782b 100644 --- a/libimagstorestdhook/src/vcs/git/config.rs +++ b/libimagstorestdhook/src/vcs/git/config.rs @@ -0,0 +1,11 @@ +pub fn commit_interactive(config: &Value) -> bool { + unimplemented!() +} + +pub fn commit_message(config: &Value, action: StoreAction) -> Option { + if commit_interactive(config) { + unimplemented!() + } else { + unimplemented!() + } +}