pull alsa mods out

This commit is contained in:
Hailey Somerville 2024-02-14 20:11:04 +11:00
parent 80c7dce809
commit bccec5c436
2 changed files with 4 additions and 6 deletions

View file

@ -0,0 +1,3 @@
pub mod config;
pub mod input;
pub mod output;

View file

@ -4,12 +4,7 @@ use thiserror::Error;
use self::config::DeviceOpt;
pub mod alsa {
pub mod config;
pub mod input;
pub mod output;
}
pub mod alsa;
pub mod config;
#[derive(Debug, Error)]