From 3cf31fc4049fefc82db0a3d2018b5d98ab77c5d7 Mon Sep 17 00:00:00 2001 From: Michael Muré Date: Wed, 1 Jul 2020 19:39:02 +0200 Subject: repository: merge git.Hash in for one less /util package --- bug/comment.go | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'bug/comment.go') diff --git a/bug/comment.go b/bug/comment.go index 47c1ff05..4c9d118e 100644 --- a/bug/comment.go +++ b/bug/comment.go @@ -1,11 +1,12 @@ package bug import ( + "github.com/dustin/go-humanize" + "github.com/MichaelMure/git-bug/entity" "github.com/MichaelMure/git-bug/identity" - "github.com/MichaelMure/git-bug/util/git" + "github.com/MichaelMure/git-bug/repository" "github.com/MichaelMure/git-bug/util/timestamp" - "github.com/dustin/go-humanize" ) // Comment represent a comment in a Bug @@ -13,7 +14,7 @@ type Comment struct { id entity.Id Author identity.Interface Message string - Files []git.Hash + Files []repository.Hash // Creation time of the comment. // Should be used only for human display, never for ordering as we can't rely on it in a distributed system. -- cgit