Added go.mod file. Added util folder for shared code

This commit is contained in:
alexchao26
2020-08-01 21:21:00 -04:00
parent ca8a7b4bb3
commit af05bc86c3
5 changed files with 63 additions and 41 deletions
+12
View File
@@ -0,0 +1,12 @@
/*
just a test to see how building other parts of a package works
*/
package util
import "fmt"
// OtherFunc is a test :p
func OtherFunc() {
fmt.Println("hello from other func")
}