From be3848d0b335819f6a14590bd83a3bbd483a90a7 Mon Sep 17 00:00:00 2001 From: Steve Dudenhoeffer Date: Sun, 19 Jan 2025 23:51:21 -0500 Subject: [PATCH] Update module path to use self-hosted Gitea URL Changed the Go module path to point to the self-hosted Gitea repository. Updated import statements in the main package to reflect the new module path. This ensures alignment with the updated hosting environment. --- cmd/main.go | 3 ++- go.mod | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/cmd/main.go b/cmd/main.go index 0e12ed0..36369c7 100644 --- a/cmd/main.go +++ b/cmd/main.go @@ -1,10 +1,11 @@ package main import ( - "aislegopher" "fmt" "os" "strconv" + + "gitea.stevedudenhoeffer.com/steve/aislegopher" ) func main() { diff --git a/go.mod b/go.mod index a283455..9f05897 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ -module aislegopher +module gitea.stevedudenhoeffer.com/steve/aislegopher go 1.23.2