(app_id: AppID)
| 45 | } |
| 46 | |
| 47 | pub fn get_install_dir(app_id: AppID) -> Result<String, SteamError> { |
| 48 | app::with_client(|client| Ok(client.apps().app_install_dir(app_id.into()))) |
| 49 | } |
| 50 | |
| 51 | pub fn get_owner() -> Result<SteamID, SteamError> { |
| 52 | app::with_client(|client| Ok(client.apps().app_owner().into())) |
nothing calls this directly
no test coverage detected