From 60d7a56543dac88c3098b7a506086c858f470c05 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Thu, 5 Feb 2026 11:01:21 +0000 Subject: [PATCH] Initial upload: Project Scaffold CLI with multi-language templates and CI/CD --- project_scaffold_cli/templates/go/main.go.j2 | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 project_scaffold_cli/templates/go/main.go.j2 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 }}!") +}