chore: move steamvr_utils to util module

This commit is contained in:
Gabriele Musco 2024-09-01 20:06:13 +02:00
parent 8fb9e1c1f1
commit 74414ea938
4 changed files with 2 additions and 2 deletions

View file

@ -38,7 +38,6 @@ pub mod paths;
pub mod profile;
pub mod profiles;
pub mod steam_linux_runtime_injector;
pub mod steamvr_utils;
pub mod termcolor;
pub mod ui;
pub mod util;

View file

@ -18,8 +18,8 @@ use crate::{
paths::{get_data_dir, get_home_dir},
profile::{LighthouseDriver, Profile, XRServiceType},
stateless_action,
steamvr_utils::chaperone_info_exists,
util::file_utils::{get_writer, mount_has_nosuid},
util::steamvr_utils::chaperone_info_exists,
xr_devices::XRDevice,
};
use adw::{prelude::*, ResponseAppearance};

View file

@ -1,2 +1,3 @@
pub mod file_utils;
pub mod hash;
pub mod steamvr_utils;