Fixed imports

This commit is contained in:
mitch 2022-01-19 23:31:19 -05:00
parent e0597a291a
commit 441fca430a
4 changed files with 2 additions and 19 deletions

View File

@ -1,8 +1,8 @@
package clockface
import (
"git.nerdfortress.dev/mitch/clockface"
"math"
"time"
)
const secondHandLength = 90

View File

@ -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)

View File

@ -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)
}

2
go.mod
View File

@ -1,3 +1,3 @@
module clockface
module git.nerdfortress.dev/mitch/clockface
go 1.17