mirror of
https://github.com/asterinas/asterinas.git
synced 2025-06-10 13:56:48 +00:00
11 lines
251 B
Rust
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);
|
|
}
|
|
}
|