()
| 17 | } |
| 18 | |
| 19 | pub fn is_subscribed() -> Result<bool, SteamError> { |
| 20 | app::with_client(|client| Ok(client.apps().is_subscribed())) |
| 21 | } |
| 22 | |
| 23 | pub fn is_subscribed_app(app_id: AppID) -> Result<bool, SteamError> { |
| 24 | app::with_client(|client| Ok(client.apps().is_subscribed_app(app_id.into()))) |
nothing calls this directly
no test coverage detected