1 2 3 4 5 6 7 8 9 10 11 12 13
//! Provides a unified, simplified systems api //! //! ### How to use the Rivia `sys` module //! ``` //! use rivia::prelude::*; //! ``` mod fs; // Export contents of modules into sys pub use fs::*; // Export directly pub mod user;