change repo name
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Aaron Riedel 2023-12-23 18:22:37 +01:00 committed by Tom3201
parent 6561db6723
commit 9e5c58207c
Signed by: tom
GPG key ID: F17EFE4272D89FF6
4 changed files with 6 additions and 8 deletions

View file

@ -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"
)

2
go.mod
View file

@ -1,4 +1,4 @@
module git.ar21.de/tom/country-geo-locations
module git.ar21.de/yolokube/country-geo-locations
go 1.21.5

2
go.sum
View file

@ -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=

View file

@ -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"