From 96bd8e9d4e0e633933331d33eb323a1075973156 Mon Sep 17 00:00:00 2001 From: Achim Rohn Date: Sat, 15 Nov 2025 14:02:46 +0100 Subject: [PATCH] Move template.air.toml file to the starter module --- starter/create/create.go | 2 +- template.air.toml => starter/template.air.toml | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename template.air.toml => starter/template.air.toml (100%) diff --git a/starter/create/create.go b/starter/create/create.go index c35e9a4..e1f885e 100644 --- a/starter/create/create.go +++ b/starter/create/create.go @@ -84,7 +84,7 @@ func (s StarterCreator) Create() { must(os.WriteFile(targetPath, content, 0o644)) log.Printf("StarterCreator.Create: wrote starter main.go to %s", targetPath) - s.copyFile("../../template.air.toml", ".air.toml") + s.copyFile("template.air.toml", ".air.toml") //s.copyGoMod() //s.executeGoModTidy() diff --git a/template.air.toml b/starter/template.air.toml similarity index 100% rename from template.air.toml rename to starter/template.air.toml