From 3693783e3ca71ccbfd881bbd840ceac65714ad09 Mon Sep 17 00:00:00 2001 From: Eric Neidhardt Date: Wed, 22 Jan 2020 15:50:41 +0100 Subject: [PATCH] Fixed missing dot in import path --- api_test.go | 2 +- cmd/openweatherclient/main.go | 2 +- go.mod | 2 +- query_test.go | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/api_test.go b/api_test.go index 435caa0..9a027ea 100644 --- a/api_test.go +++ b/api_test.go @@ -4,7 +4,7 @@ import ( "io/ioutil" "testing" - "EricNeid/go-openweather/internal/verify" + "github.com/EricNeid/go-openweather/internal/verify" ) const apiKeyFile = "testdata/api.key" diff --git a/cmd/openweatherclient/main.go b/cmd/openweatherclient/main.go index 95a0f54..976ce56 100644 --- a/cmd/openweatherclient/main.go +++ b/cmd/openweatherclient/main.go @@ -4,7 +4,7 @@ import ( "flag" "fmt" - "EricNeid/go-openweather" + "github.com/EricNeid/go-openweather" ) func main() { diff --git a/go.mod b/go.mod index 7232967..0690572 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ -module EricNeid/go-openweather +module github.com/EricNeid/go-openweather go 1.13 diff --git a/query_test.go b/query_test.go index 7530352..7c63d9e 100644 --- a/query_test.go +++ b/query_test.go @@ -3,7 +3,7 @@ package openweather import ( "testing" - "EricNeid/go-openweather/internal/verify" + "github.com/EricNeid/go-openweather/internal/verify" ) func TestNewQueryForCity(t *testing.T) {