steamosctl: Use more enums instead of u32 where applicable

This commit is contained in:
Vicki Pfau 2024-05-13 16:45:46 -07:00
parent 936bdb220c
commit d027445d9d
2 changed files with 18 additions and 16 deletions

View file

@ -14,16 +14,16 @@ use tokio::signal::unix::{signal, SignalKind};
use tokio_util::sync::CancellationToken;
use tracing::{info, warn};
mod cec;
mod ds_inhibit;
mod error;
mod hardware;
mod manager;
mod process;
mod sls;
mod systemd;
pub mod cec;
pub mod daemon;
pub mod hardware;
pub mod power;
pub mod proxy;
pub mod wifi;