From 86ae4b78ebb1837ab480c7064d117c5ee175e53a Mon Sep 17 00:00:00 2001 From: Dmitriy Pleshevskiy Date: Thu, 21 Jul 2022 09:26:44 +0300 Subject: [PATCH] style: modules relocation According to the [Rust book], it's encouraged to use this option instead of `mod.rs` [Rust book]: https://doc.rust-lang.org/reference/items/modules.html#module-source-filenames --- src/{channels/mod.rs => channels.rs} | 0 src/{commands/mod.rs => commands.rs} | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename src/{channels/mod.rs => channels.rs} (100%) rename src/{commands/mod.rs => commands.rs} (100%) diff --git a/src/channels/mod.rs b/src/channels.rs similarity index 100% rename from src/channels/mod.rs rename to src/channels.rs diff --git a/src/commands/mod.rs b/src/commands.rs similarity index 100% rename from src/commands/mod.rs rename to src/commands.rs