From c498674718608a1171a4fcef6f26184df7d5fa7b Mon Sep 17 00:00:00 2001 From: Michael Muré Date: Thu, 12 Jul 2018 12:44:46 +0200 Subject: add the new bug command with a very primitive bug datastructure --- repository/repo.go | 3 +++ 1 file changed, 3 insertions(+) (limited to 'repository/repo.go') diff --git a/repository/repo.go b/repository/repo.go index 7329f183..11bb132e 100644 --- a/repository/repo.go +++ b/repository/repo.go @@ -6,6 +6,9 @@ type Repo interface { // GetPath returns the path to the repo. GetPath() string + // GetUserName returns the name the the user has used to configure git + GetUserName() (string, error) + // GetUserEmail returns the email address that the user has used to configure git. GetUserEmail() (string, error) -- cgit