From da5f2235d27c57a1782c2f83e008a756501437ea Mon Sep 17 00:00:00 2001 From: Pantonshire Date: Wed, 1 Jun 2022 17:37:03 +0100 Subject: [PATCH] Move ShString to its own submodule --- src/strings/mod.rs | 3 +++ src/{strings.rs => strings/shstring.rs} | 0 2 files changed, 3 insertions(+) create mode 100644 src/strings/mod.rs rename src/{strings.rs => strings/shstring.rs} (100%) diff --git a/src/strings/mod.rs b/src/strings/mod.rs new file mode 100644 index 0000000..b6dce5b --- /dev/null +++ b/src/strings/mod.rs @@ -0,0 +1,3 @@ +pub mod shstring; + +pub use shstring::{ShString, ShString22}; diff --git a/src/strings.rs b/src/strings/shstring.rs similarity index 100% rename from src/strings.rs rename to src/strings/shstring.rs