From 0856364f4cef2229e75a47eee0b13c949e3e558f Mon Sep 17 00:00:00 2001 From: Palash Tyagi <23239946+Magnus167@users.noreply.github.com> Date: Sat, 26 Apr 2025 17:22:23 +0100 Subject: [PATCH] included ops module --- src/frame/mod.rs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/frame/mod.rs b/src/frame/mod.rs index 550fcea..e7840d4 100644 --- a/src/frame/mod.rs +++ b/src/frame/mod.rs @@ -1,3 +1,7 @@ pub mod base; +pub mod ops; -pub use base::*; \ No newline at end of file +pub use base::*; + +#[allow(unused_imports)] +pub use ops::*; \ No newline at end of file