From 69781499cb070535bfc4e968d9ed3102ea722fb3 Mon Sep 17 00:00:00 2001 From: Richard Date: Wed, 16 Feb 2022 19:37:38 -0300 Subject: Introduce `QueryInformation` to `system::Action` --- native/src/system.rs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'native/src/system.rs') diff --git a/native/src/system.rs b/native/src/system.rs index e1a790bc..61c8ff29 100644 --- a/native/src/system.rs +++ b/native/src/system.rs @@ -1,3 +1,6 @@ //! Access the native system. mod action; +mod information; + pub use action::Action; +pub use information::Information; -- cgit