Fixed missing dot in import path

This commit is contained in:
Eric Neidhardt 2020-01-22 15:50:41 +01:00
parent 739889c07b
commit 3693783e3c
4 changed files with 4 additions and 4 deletions

View File

@ -4,7 +4,7 @@ import (
"io/ioutil" "io/ioutil"
"testing" "testing"
"EricNeid/go-openweather/internal/verify" "github.com/EricNeid/go-openweather/internal/verify"
) )
const apiKeyFile = "testdata/api.key" const apiKeyFile = "testdata/api.key"

View File

@ -4,7 +4,7 @@ import (
"flag" "flag"
"fmt" "fmt"
"EricNeid/go-openweather" "github.com/EricNeid/go-openweather"
) )
func main() { func main() {

2
go.mod
View File

@ -1,3 +1,3 @@
module EricNeid/go-openweather module github.com/EricNeid/go-openweather
go 1.13 go 1.13

View File

@ -3,7 +3,7 @@ package openweather
import ( import (
"testing" "testing"
"EricNeid/go-openweather/internal/verify" "github.com/EricNeid/go-openweather/internal/verify"
) )
func TestNewQueryForCity(t *testing.T) { func TestNewQueryForCity(t *testing.T) {