diff options
author | 2022-02-16 19:37:38 -0300 | |
---|---|---|
committer | 2022-04-26 18:54:23 -0300 | |
commit | 69781499cb070535bfc4e968d9ed3102ea722fb3 (patch) | |
tree | b08c61ebb646595ff9420351201bf71a1cf21df8 /native/src/system.rs | |
parent | fed8da1c9078638a96ae57a9dd6edacb0a1936b3 (diff) | |
download | iced-69781499cb070535bfc4e968d9ed3102ea722fb3.tar.gz iced-69781499cb070535bfc4e968d9ed3102ea722fb3.tar.bz2 iced-69781499cb070535bfc4e968d9ed3102ea722fb3.zip |
Introduce `QueryInformation` to `system::Action`
Diffstat (limited to 'native/src/system.rs')
-rw-r--r-- | native/src/system.rs | 3 |
1 files changed, 3 insertions, 0 deletions
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; |