diff --git a/go.mod b/go.mod index ea41ac3..36497b8 100755 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module giteatest -go 1.25.4 +go 1.26.1 require github.com/stretchr/testify v1.11.1 diff --git a/main.go b/main.go index 0d44a32..755ac96 100755 --- a/main.go +++ b/main.go @@ -10,6 +10,7 @@ func main() { fmt.Println(hello()) } + func hello() string { return "Hello go" }