Remove connection::* import.
This commit is contained in:
@@ -5,8 +5,6 @@ use mumble_web2_common::{ClientConfig, ServerStatus};
|
|||||||
use std::future::Future;
|
use std::future::Future;
|
||||||
use std::time::Duration;
|
use std::time::Duration;
|
||||||
|
|
||||||
pub use super::connect::*;
|
|
||||||
|
|
||||||
/// Mobile platform implementation using Tokio, native audio, and Android permissions.
|
/// Mobile platform implementation using Tokio, native audio, and Android permissions.
|
||||||
pub struct MobilePlatform;
|
pub struct MobilePlatform;
|
||||||
|
|
||||||
@@ -43,7 +41,7 @@ impl super::PlatformInterface for MobilePlatform {
|
|||||||
event_rx: &mut UnboundedReceiver<Command>,
|
event_rx: &mut UnboundedReceiver<Command>,
|
||||||
gui_config: &ClientConfig,
|
gui_config: &ClientConfig,
|
||||||
) -> Result<(), Error> {
|
) -> 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> {
|
async fn get_status(client: &reqwest::Client) -> color_eyre::Result<ServerStatus> {
|
||||||
|
|||||||
Reference in New Issue
Block a user