(name: &str)
| 47 | } |
| 48 | |
| 49 | pub fn delete(name: &str) -> Result<bool, SteamError> { |
| 50 | app::with_client(|client| Ok(client.remote_storage().file(name).delete())) |
| 51 | } |
| 52 | |
| 53 | pub fn get_file_bytes(name: &str) -> Result<Vec<u8>, SteamError> { |
| 54 | app::with_client(|client| { |
nothing calls this directly
no test coverage detected