From 812a22bfedca4b91fe4d62ab7d76cf3c4df2079f Mon Sep 17 00:00:00 2001 From: Ulysse Mavrocordatos Date: Wed, 16 Sep 2026 15:00:20 +0200 Subject: [PATCH] refactor(generated): move scaffold into generated directory Move the generated-command registry to src/generated/mod.rs so future generated modules can live in an isolated directory without conflicting with hand-written commands. --- src/{generated.rs => generated/mod.rs} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename src/{generated.rs => generated/mod.rs} (65%) diff --git a/src/generated.rs b/src/generated/mod.rs similarity index 65% rename from src/generated.rs rename to src/generated/mod.rs index 4fe4a5cd..a9c96d15 100644 --- a/src/generated.rs +++ b/src/generated/mod.rs @@ -1,7 +1,7 @@ // Stable integration point for openapi-transformer-generated pup commands. // -// Future regenerations add variants to `GeneratedCommand` (and new modules -// alongside this file) in place; main.rs never needs to change again. +// Future regenerations add variants to `GeneratedCommand` and modules within +// this directory in place; main.rs never needs to change again. use anyhow::Result;