From e36228b949f4450564fa0a9d67e5af8fb181cc59 Mon Sep 17 00:00:00 2001 From: Yuki Date: Sat, 14 Jun 2025 00:40:46 +0800 Subject: [PATCH] fix: Pacakge name bug. Mix up package name and module name. --- hello.go | 2 +- hello_test.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hello.go b/hello.go index 121b736..858b457 100644 --- a/hello.go +++ b/hello.go @@ -1,4 +1,4 @@ -package git.alienyuki.com/yuki/hellogomod +package hellogomod func SayHello(name string) string { return "Hello, " + name + "!" diff --git a/hello_test.go b/hello_test.go index ae09410..9ece53b 100644 --- a/hello_test.go +++ b/hello_test.go @@ -1,4 +1,4 @@ -package git.alienyuki.com/yuki/hellogomod +package hellogomod import "testing"