()
| 10 | } |
| 11 | |
| 12 | pub fn get_self_name() -> Result<String, SteamError> { |
| 13 | app::with_client(|client| Ok(client.friends().name())) |
| 14 | } |
| 15 | |
| 16 | pub fn get_level() -> Result<u32, SteamError> { |
| 17 | app::with_client(|client| Ok(client.user().level())) |
nothing calls this directly
no test coverage detected