From 0c15c2779875d9e3b310dda8a127f2763090da4c Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Thu, 5 Feb 2026 11:01:23 +0000 Subject: [PATCH] Initial upload: Project Scaffold CLI with multi-language templates and CI/CD --- project_scaffold_cli/templates/rust/src/main.rs.j2 | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 project_scaffold_cli/templates/rust/src/main.rs.j2 diff --git a/project_scaffold_cli/templates/rust/src/main.rs.j2 b/project_scaffold_cli/templates/rust/src/main.rs.j2 new file mode 100644 index 0000000..9a40c80 --- /dev/null +++ b/project_scaffold_cli/templates/rust/src/main.rs.j2 @@ -0,0 +1,3 @@ +fn main() { + println!("Welcome to {{ project_name }}!"); +}