From f9f31c06bbf29795ba1a04b1a5e9983c54f6f5c8 Mon Sep 17 00:00:00 2001 From: Eric Phillips Date: Thu, 30 Apr 2026 13:58:11 -0600 Subject: [PATCH] switched remote to github.com --- go.mod | 2 +- handlerPkgs.go | 2 +- main.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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 {