mirror of
https://github.com/veeso/termscp.git
synced 2026-04-14 14:11:22 -07:00
refactor: migrate from mod.rs to named module files
This commit is contained in:
19
src/utils.rs
Normal file
19
src/utils.rs
Normal 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;
|
||||
Reference in New Issue
Block a user