From 4f184a439056d2b5dff7aa2fa1b1a73a1cbe9582 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Sat, 7 Feb 2026 18:08:42 +0800 Subject: Add asset system with file locking and atomic writes --- systems/asset/src/lib.rs | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 systems/asset/src/lib.rs (limited to 'systems/asset/src/lib.rs') diff --git a/systems/asset/src/lib.rs b/systems/asset/src/lib.rs new file mode 100644 index 0000000..ac4317f --- /dev/null +++ b/systems/asset/src/lib.rs @@ -0,0 +1,6 @@ +pub mod asset; +pub mod error; +pub mod rw; + +#[allow(unused)] +pub use asset_macros::*; -- cgit