refactor: migrate from mod.rs to named module files

This commit is contained in:
Christian Visintin
2026-02-27 22:41:51 +01:00
parent 92fc4fa098
commit 1461a68bb3
20 changed files with 0 additions and 0 deletions

19
src/utils.rs Normal file
View File

@@ -0,0 +1,19 @@
//! ## Utils
//!
//! `utils` is the module which provides utilities of different kind
// modules
pub mod crypto;
pub mod file;
pub mod fmt;
pub mod parser;
pub mod path;
pub mod random;
pub mod ssh;
pub mod string;
pub mod tty;
pub mod ui;
#[cfg(test)]
#[allow(dead_code)]
pub mod test_helpers;