diff --git a/project_scaffold_cli/templates/go/main.go.j2 b/project_scaffold_cli/templates/go/main.go.j2 new file mode 100644 index 0000000..96f6019 --- /dev/null +++ b/project_scaffold_cli/templates/go/main.go.j2 @@ -0,0 +1,9 @@ +package main + +import ( + "fmt" +) + +func main() { + fmt.Println("Welcome to {{ project_name }}!") +}