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
2 changed files with 2 additions and 2 deletions

View File

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