from go-template

This commit is contained in:
John Ritsema
2023-06-01 22:04:03 -04:00
commit 2811fdd9cf
9 changed files with 132 additions and 0 deletions

11
run.go Normal file
View File

@@ -0,0 +1,11 @@
package main
import (
"fmt"
"io"
)
func run(args []string, stdout io.Writer) error {
fmt.Println("hello world")
return nil
}