diff options
author | Michael Muré <batolettre@gmail.com> | 2018-09-11 22:04:16 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2018-09-11 22:14:46 +0200 |
commit | 3605887345792d2f981f971c6c4a2cb7f86a343e (patch) | |
tree | afd525b6e3a638e4c619a5a986fcb2811c297444 /cache/bug_cache.go | |
parent | 7b05983c19af4da70f2a9a5062913f4e4f5d5faa (diff) | |
download | git-bug-3605887345792d2f981f971c6c4a2cb7f86a343e.tar.gz |
reorganize package for a more idomatic go
Diffstat (limited to 'cache/bug_cache.go')
-rw-r--r-- | cache/bug_cache.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cache/bug_cache.go b/cache/bug_cache.go index c9e1f2f5..cbb0d15a 100644 --- a/cache/bug_cache.go +++ b/cache/bug_cache.go @@ -4,8 +4,8 @@ import ( "io" "github.com/MichaelMure/git-bug/bug" - "github.com/MichaelMure/git-bug/bug/operations" - "github.com/MichaelMure/git-bug/util" + "github.com/MichaelMure/git-bug/operations" + "github.com/MichaelMure/git-bug/util/git" ) type BugCache struct { @@ -40,7 +40,7 @@ func (c *BugCache) AddComment(message string) error { return c.notifyUpdated() } -func (c *BugCache) AddCommentWithFiles(message string, files []util.Hash) error { +func (c *BugCache) AddCommentWithFiles(message string, files []git.Hash) error { author, err := bug.GetUser(c.repoCache.repo) if err != nil { return err |