diff options
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 { |