From ca86952c1486b7f2313fef62e6cacf36e248efd2 Mon Sep 17 00:00:00 2001 From: HampusM Date: Sat, 13 Jul 2024 16:26:28 +0200 Subject: refactor: move & rename all mod.rs files --- examples/async/animals.rs | 3 +++ examples/async/animals/mod.rs | 3 --- examples/async/interfaces.rs | 4 ++++ examples/async/interfaces/mod.rs | 4 ---- 4 files changed, 7 insertions(+), 7 deletions(-) create mode 100644 examples/async/animals.rs delete mode 100644 examples/async/animals/mod.rs create mode 100644 examples/async/interfaces.rs delete mode 100644 examples/async/interfaces/mod.rs (limited to 'examples/async') diff --git a/examples/async/animals.rs b/examples/async/animals.rs new file mode 100644 index 0000000..5444978 --- /dev/null +++ b/examples/async/animals.rs @@ -0,0 +1,3 @@ +pub mod cat; +pub mod dog; +pub mod human; diff --git a/examples/async/animals/mod.rs b/examples/async/animals/mod.rs deleted file mode 100644 index 5444978..0000000 --- a/examples/async/animals/mod.rs +++ /dev/null @@ -1,3 +0,0 @@ -pub mod cat; -pub mod dog; -pub mod human; diff --git a/examples/async/interfaces.rs b/examples/async/interfaces.rs new file mode 100644 index 0000000..ea0a26d --- /dev/null +++ b/examples/async/interfaces.rs @@ -0,0 +1,4 @@ +pub mod cat; +pub mod dog; +pub mod food; +pub mod human; diff --git a/examples/async/interfaces/mod.rs b/examples/async/interfaces/mod.rs deleted file mode 100644 index ea0a26d..0000000 --- a/examples/async/interfaces/mod.rs +++ /dev/null @@ -1,4 +0,0 @@ -pub mod cat; -pub mod dog; -pub mod food; -pub mod human; -- cgit v1.2.3-18-g5258