2024-08-23 23:37:50 +08:00

11 lines
251 B
Rust

// SPDX-License-Identifier: MPL-2.0
use log::info;
pub fn init() {
// print all the input device to make sure input crate will compile
for (name, _) in aster_input::all_devices() {
info!("Found Input device, name:{}", name);
}
}