templates: add go files to go template

This commit is contained in:
ooks-io 2024-11-19 17:14:58 +11:00
parent 7a4216ae43
commit a83b2f7fa5
2 changed files with 10 additions and 0 deletions

View file

@ -0,0 +1,3 @@
module hello
go 1.23.2

View file

@ -0,0 +1,7 @@
package main
import "fmt"
func main() {
fmt.Println("Hello World!")
}