rename module to match public repo

This commit is contained in:
2021-11-16 15:19:59 -06:00
parent 1267a8f4e3
commit 845d5a0294
3 changed files with 5 additions and 3 deletions

2
go.mod
View File

@@ -1,3 +1,3 @@
module lookupip module github.com/ryanehamil/lookupip
go 1.17 go 1.17

View File

@@ -3,8 +3,9 @@ package main
import ( import (
"flag" "flag"
"fmt" "fmt"
"lookupip/src/ipapi"
"strings" "strings"
"github.com/ryanehamil/lookupip/src/ipapi"
) )
var verbose bool = false var verbose bool = false

View File

@@ -3,9 +3,10 @@ package ipapi
import ( import (
"encoding/json" "encoding/json"
"errors" "errors"
"lookupip/src/utils"
"net/http" "net/http"
"reflect" "reflect"
"github.com/ryanehamil/lookupip/src/utils"
) )
// IP-API data struct // IP-API data struct