From 83fd89446d9369c5dca82ae724c65c6f028be9c2 Mon Sep 17 00:00:00 2001 From: Sam Fredrickson Date: Tue, 19 Mar 2024 14:29:37 -0700 Subject: [PATCH] Fix module name. --- bitcoinity/model_test.go | 2 +- coindesk/lib_test.go | 2 +- go.mod | 2 +- moon/moon.go | 2 +- moon/moon_test.go | 2 +- moonmath.go | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/bitcoinity/model_test.go b/bitcoinity/model_test.go index 1b1b842..441d41d 100644 --- a/bitcoinity/model_test.go +++ b/bitcoinity/model_test.go @@ -5,7 +5,7 @@ import ( "encoding/json" "testing" - "code.humancabbage.net/moonmath/bitcoinity" + "code.humancabbage.net/sam/moonmath/bitcoinity" ) func TestUnmarshalGetTickerResponse(t *testing.T) { diff --git a/coindesk/lib_test.go b/coindesk/lib_test.go index 4a205d3..18785f9 100644 --- a/coindesk/lib_test.go +++ b/coindesk/lib_test.go @@ -6,7 +6,7 @@ import ( "testing" "time" - "code.humancabbage.net/moonmath/coindesk" + "code.humancabbage.net/sam/moonmath/coindesk" ) func TestXxx(t *testing.T) { diff --git a/go.mod b/go.mod index df8bcb7..50da58e 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module code.humancabbage.net/moonmath +module code.humancabbage.net/sam/moonmath go 1.22.1 diff --git a/moon/moon.go b/moon/moon.go index a1f87b3..efd83e0 100644 --- a/moon/moon.go +++ b/moon/moon.go @@ -5,7 +5,7 @@ import ( "math" "time" - "code.humancabbage.net/moonmath/coindesk" + "code.humancabbage.net/sam/moonmath/coindesk" "github.com/sourcegraph/conc/pool" ) diff --git a/moon/moon_test.go b/moon/moon_test.go index 19b6543..4942922 100644 --- a/moon/moon_test.go +++ b/moon/moon_test.go @@ -4,7 +4,7 @@ import ( "testing" "time" - "code.humancabbage.net/moonmath/moon" + "code.humancabbage.net/sam/moonmath/moon" ) func TestCDPR(t *testing.T) { diff --git a/moonmath.go b/moonmath.go index db83bad..114d7b8 100644 --- a/moonmath.go +++ b/moonmath.go @@ -6,7 +6,7 @@ import ( "os" "time" - "code.humancabbage.net/moonmath/moon" + "code.humancabbage.net/sam/moonmath/moon" "github.com/charmbracelet/bubbles/table" tea "github.com/charmbracelet/bubbletea" "github.com/charmbracelet/lipgloss"