diff --git a/clockface.go b/clockface.go index c68d6bf..b3bbe2c 100644 --- a/clockface.go +++ b/clockface.go @@ -1,8 +1,8 @@ package clockface import ( - "git.nerdfortress.dev/mitch/clockface" "math" + "time" ) const secondHandLength = 90 diff --git a/clockface_acceptance_test.go b/clockface_acceptance_test.go index 086fde7..a47d890 100644 --- a/clockface_acceptance_test.go +++ b/clockface_acceptance_test.go @@ -5,14 +5,6 @@ import ( "time" ) -package clockface - -import ( -"testing" -"time" -"git.nerdfortress.dev/mitch/clockface" -) - func TestSecondHandAtMidnight(t *testing.T) { tm := time.Date(1337, time.January, 1, 0, 0, 0, 0, time.UTC) diff --git a/clockface_test.go b/clockface_test.go index 580e84f..7104169 100644 --- a/clockface_test.go +++ b/clockface_test.go @@ -6,15 +6,6 @@ import ( "time" ) -package clockface - -import ( -"math" -"testing" -"time" -"git.nerdfortress.dev/mitch/clockface" -) - func simpleTime(hours, minutes, seconds int) time.Time { return time.Date(312, time.October, 28, hours, minutes, seconds, 0, time.UTC) } diff --git a/go.mod b/go.mod index a3e606e..f64db25 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ -module clockface +module git.nerdfortress.dev/mitch/clockface go 1.17