From 7f02f818da766144e64c4a5083763c8d45a05698 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Sun, 15 May 2016 00:47:43 +0200 Subject: [PATCH] Add (unimplemented) config helper functions --- libimagstorestdhook/src/vcs/git/config.rs | 11 +++++++++++ 1 file changed, 11 insertions(+) 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!() + } +}