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 /repository/tree_entry.go | |
parent | 7b05983c19af4da70f2a9a5062913f4e4f5d5faa (diff) | |
download | git-bug-3605887345792d2f981f971c6c4a2cb7f86a343e.tar.gz |
reorganize package for a more idomatic go
Diffstat (limited to 'repository/tree_entry.go')
-rw-r--r-- | repository/tree_entry.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/repository/tree_entry.go b/repository/tree_entry.go index 8b6b5e1b..3e532a30 100644 --- a/repository/tree_entry.go +++ b/repository/tree_entry.go @@ -4,12 +4,12 @@ import ( "fmt" "strings" - "github.com/MichaelMure/git-bug/util" + "github.com/MichaelMure/git-bug/util/git" ) type TreeEntry struct { ObjectType ObjectType - Hash util.Hash + Hash git.Hash Name string } @@ -34,7 +34,7 @@ func ParseTreeEntry(line string) (TreeEntry, error) { return TreeEntry{}, err } - hash := util.Hash(fields[2]) + hash := git.Hash(fields[2]) name := strings.Join(fields[3:], "") return TreeEntry{ |