MCPcopy Create free account
hub / github.com/Moosync/Moosync / request_account_status

Method request_account_status

src-tauri/src/providers/handler.rs:135–142  ·  view source on GitHub ↗
(&self, key: String)

Source from the content-addressed store, hash-verified

133 }
134
135 pub async fn request_account_status(&self, key: String) -> Result<()> {
136 let provider_store = self.provider_store.read().await;
137 if let Some(provider) = provider_store.get(&key) {
138 provider.requested_account_status().await?;
139 }
140
141 Err("Provider not found".into())
142 }
143
144 #[tracing::instrument(level = "debug", skip(self, status_rx))]
145 pub fn listen_status_changes(&self, status_rx: UnboundedReceiver<ProviderStatus>) {

Callers 1

update_accountsMethod · 0.80

Calls 2

getMethod · 0.80

Tested by

no test coverage detected