smokepatio/src/lib.rs

14 lines
191 B
Rust

//! 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);
}
}