chore: update module and import paths

- Change the module name from "example" to "gitea.com/action-examples/go" in go.mod
- Update the import path from "example/router" to "gitea.com/action-examples/go/router" in main.go

Signed-off-by: appleboy <appleboy.tw@gmail.com>
This commit is contained in:
appleboy 2024-01-27 23:05:15 +08:00
parent 6edc3a2d12
commit 9dfe08a58c
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

2
go.mod
View File

@ -1,4 +1,4 @@
module example
module gitea.com/action-examples/go
go 1.21

View File

@ -1,7 +1,7 @@
package main
import (
"example/router"
"gitea.com/action-examples/go/router"
)
func main() {