diff --git a/go.mod b/go.mod index 7f85fb0..0009b6e 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module gitea.ewpt3ch.dev/ewpt3ch/pkgstash +module github.com/ewpt3ch/pkgstash go 1.26.2 diff --git a/handlerPkgs.go b/handlerPkgs.go index fb881b7..67cc4c2 100644 --- a/handlerPkgs.go +++ b/handlerPkgs.go @@ -8,7 +8,7 @@ import ( "path/filepath" "strings" - "gitea.ewpt3ch.dev/ewpt3ch/pkgstash/internal/cache" + "github.com/ewpt3ch/pkgstash/internal/cache" ) func (s *Server) handlePackage(w http.ResponseWriter, req *http.Request) { diff --git a/main.go b/main.go index a34f15e..9d5a700 100644 --- a/main.go +++ b/main.go @@ -5,7 +5,7 @@ import ( "log" "net/http" - "gitea.ewpt3ch.dev/ewpt3ch/pkgstash/internal/cache" + "github.com/ewpt3ch/pkgstash/internal/cache" ) type Server struct {