From 9dfe08a58c41b54716b794114480d09449dae779 Mon Sep 17 00:00:00 2001 From: appleboy Date: Sat, 27 Jan 2024 23:05:15 +0800 Subject: [PATCH] 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 --- go.mod | 2 +- main.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/go.mod b/go.mod index 860858f..39cafd1 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module example +module gitea.com/action-examples/go go 1.21 diff --git a/main.go b/main.go index 2de688f..6965235 100644 --- a/main.go +++ b/main.go @@ -1,7 +1,7 @@ package main import ( - "example/router" + "gitea.com/action-examples/go/router" ) func main() {