diff options
Diffstat (limited to 'native/src/system.rs')
-rw-r--r-- | native/src/system.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/native/src/system.rs b/native/src/system.rs new file mode 100644 index 00000000..61c8ff29 --- /dev/null +++ b/native/src/system.rs @@ -0,0 +1,6 @@ +//! Access the native system. +mod action; +mod information; + +pub use action::Action; +pub use information::Information; |