smokepatio/src/lib.rs

15 lines
191 B
Rust
Raw Normal View History

2023-12-29 05:31:04 +00:00
//! Low-level hardware interfaces for Valve's Steam Deck
#![warn(missing_docs)]
pub mod ec;
#[cfg(test)]
mod tests {
#[test]
fn it_works() {
assert_eq!(2 + 2, 4);
}
}