diff --git a/api/v1/server.go b/api/v1/server.go index 3801b0c..1380c97 100644 --- a/api/v1/server.go +++ b/api/v1/server.go @@ -4,7 +4,7 @@ import ( "context" "net/http" - "git.ar21.de/tom/country-geo-locations/pkg/geoloc" + "git.ar21.de/yolokube/country-geo-locations/pkg/geoloc" "github.com/go-chi/chi/v5" "github.com/go-chi/render" ) diff --git a/go.mod b/go.mod index f41cbc2..6a92bee 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module git.ar21.de/tom/country-geo-locations +module git.ar21.de/yolokube/country-geo-locations go 1.21.5 diff --git a/go.sum b/go.sum index 92f0189..0be8204 100644 --- a/go.sum +++ b/go.sum @@ -8,8 +8,6 @@ github.com/alecthomas/repr v0.1.0 h1:ENn2e1+J3k09gyj2shc0dHr/yjaWSHRlrJ4DPMevDqE github.com/alecthomas/repr v0.1.0/go.mod h1:2kn6fqh/zIyPLmm3ugklbEi5hg5wS435eygvNfaDQL8= github.com/dustin/go-humanize v1.0.1 h1:GzkhY7T5VNhEkwH0PVJgjz+fX1rhBrR7pRT3mDkpeCY= github.com/dustin/go-humanize v1.0.1/go.mod h1:Mu1zIs6XwVuF/gI1OepvI0qD18qycQx+mFykh5fBlto= -github.com/go-chi/chi/v5 v5.0.10 h1:rLz5avzKpjqxrYwXNfmjkrYYXOyLJd37pz53UFHC6vk= -github.com/go-chi/chi/v5 v5.0.10/go.mod h1:DslCQbL2OYiznFReuXYUmQ2hGd1aDpCnlMNITLSKoi8= github.com/go-chi/chi/v5 v5.0.11 h1:BnpYbFZ3T3S1WMpD79r7R5ThWX40TaFB7L31Y8xqSwA= github.com/go-chi/chi/v5 v5.0.11/go.mod h1:DslCQbL2OYiznFReuXYUmQ2hGd1aDpCnlMNITLSKoi8= github.com/go-chi/render v1.0.3 h1:AsXqd2a1/INaIfUSKq3G5uA8weYx20FOsM7uSoCyyt4= diff --git a/main.go b/main.go index 49dd78f..e1da3ab 100644 --- a/main.go +++ b/main.go @@ -8,10 +8,10 @@ import ( "os/signal" "syscall" - api_v1 "git.ar21.de/tom/country-geo-locations/api/v1" - "git.ar21.de/tom/country-geo-locations/cfg" - "git.ar21.de/tom/country-geo-locations/pkg/downloader" - "git.ar21.de/tom/country-geo-locations/pkg/geoloc" + api_v1 "git.ar21.de/yolokube/country-geo-locations/api/v1" + "git.ar21.de/yolokube/country-geo-locations/cfg" + "git.ar21.de/yolokube/country-geo-locations/pkg/downloader" + "git.ar21.de/yolokube/country-geo-locations/pkg/geoloc" "github.com/go-chi/chi/v5" "github.com/go-chi/chi/v5/middleware" "github.com/go-chi/render"