From f055beb6736dc7f290197429e73fc25582ca688f Mon Sep 17 00:00:00 2001 From: Tobias Bieniek Date: Mon, 3 Nov 2025 15:19:19 +0100 Subject: [PATCH] trustpub: Convert `foo/mod.rs` modules into `foo.rs` Now that we moved the tests into a dedicated compilation unit there is no need for these `mod.rs` files anymore. --- .../trustpub/github_configs/{create/mod.rs => create.rs} | 0 .../trustpub/github_configs/{delete/mod.rs => delete.rs} | 0 src/controllers/trustpub/github_configs/{list/mod.rs => list.rs} | 0 3 files changed, 0 insertions(+), 0 deletions(-) rename src/controllers/trustpub/github_configs/{create/mod.rs => create.rs} (100%) rename src/controllers/trustpub/github_configs/{delete/mod.rs => delete.rs} (100%) rename src/controllers/trustpub/github_configs/{list/mod.rs => list.rs} (100%) diff --git a/src/controllers/trustpub/github_configs/create/mod.rs b/src/controllers/trustpub/github_configs/create.rs similarity index 100% rename from src/controllers/trustpub/github_configs/create/mod.rs rename to src/controllers/trustpub/github_configs/create.rs diff --git a/src/controllers/trustpub/github_configs/delete/mod.rs b/src/controllers/trustpub/github_configs/delete.rs similarity index 100% rename from src/controllers/trustpub/github_configs/delete/mod.rs rename to src/controllers/trustpub/github_configs/delete.rs diff --git a/src/controllers/trustpub/github_configs/list/mod.rs b/src/controllers/trustpub/github_configs/list.rs similarity index 100% rename from src/controllers/trustpub/github_configs/list/mod.rs rename to src/controllers/trustpub/github_configs/list.rs