added test func

This commit is contained in:
Pavel Dmitriev 2024-01-24 09:47:57 +03:00
parent e55b74cc8b
commit aa528a536e
2 changed files with 8 additions and 1 deletions

2
go.mod
View File

@ -1,3 +1,3 @@
module mxfox.ru/palkan/go-mod-test
module mxfox.ru/mxfox/go-mod-test
go 1.21.1

7
main.go Normal file
View File

@ -0,0 +1,7 @@
package gomodtest
import "fmt"
func TestFunc() {
fmt.Print("TEST CODE")
}