Refactor the imp/gui bondary to use real traits #18

Merged
liamwarfield merged 8 commits from gui-platform-boundary-refactor into main 2026-02-18 04:53:41 +00:00
Showing only changes of commit 8170383278 - Show all commits
+1 -3
View File
@@ -5,8 +5,6 @@ use mumble_web2_common::{ClientConfig, ServerStatus};
use std::future::Future;
use std::time::Duration;
pub use super::connect::*;
/// Mobile platform implementation using Tokio, native audio, and Android permissions.
pub struct MobilePlatform;
@@ -43,7 +41,7 @@ impl super::PlatformInterface for MobilePlatform {
event_rx: &mut UnboundedReceiver<Command>,
gui_config: &ClientConfig,
) -> Result<(), Error> {
network_connect(address, username, event_rx, gui_config).await
super::connect::network_connect(address, username, event_rx, gui_config).await
}
async fn get_status(client: &reqwest::Client) -> color_eyre::Result<ServerStatus> {