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.
This commit is contained in:
Steve Dudenhoeffer 2025-01-19 23:51:21 -05:00
parent fc8bedd474
commit be3848d0b3
2 changed files with 3 additions and 2 deletions

View File

@ -1,10 +1,11 @@
package main package main
import ( import (
"aislegopher"
"fmt" "fmt"
"os" "os"
"strconv" "strconv"
"gitea.stevedudenhoeffer.com/steve/aislegopher"
) )
func main() { func main() {

2
go.mod
View File

@ -1,3 +1,3 @@
module aislegopher module gitea.stevedudenhoeffer.com/steve/aislegopher
go 1.23.2 go 1.23.2