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 /bug/interface.go | |
parent | 7b05983c19af4da70f2a9a5062913f4e4f5d5faa (diff) | |
download | git-bug-3605887345792d2f981f971c6c4a2cb7f86a343e.tar.gz |
reorganize package for a more idomatic go
Diffstat (limited to 'bug/interface.go')
-rw-r--r-- | bug/interface.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bug/interface.go b/bug/interface.go index 79333d07..c397bfbc 100644 --- a/bug/interface.go +++ b/bug/interface.go @@ -2,7 +2,7 @@ package bug import ( "github.com/MichaelMure/git-bug/repository" - "github.com/MichaelMure/git-bug/util" + "github.com/MichaelMure/git-bug/util/lamport" ) type Interface interface { @@ -41,10 +41,10 @@ type Interface interface { Compile() Snapshot // CreateLamportTime return the Lamport time of creation - CreateLamportTime() util.LamportTime + CreateLamportTime() lamport.Time // EditLamportTime return the Lamport time of the last edit - EditLamportTime() util.LamportTime + EditLamportTime() lamport.Time } func bugFromInterface(bug Interface) *Bug { |