aboutsummaryrefslogtreecommitdiffstats
path: root/crates/daemon/src/aclient/api_client.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/daemon/src/aclient/api_client.rs')
-rw-r--r--crates/daemon/src/aclient/api_client.rs11
1 files changed, 0 insertions, 11 deletions
diff --git a/crates/daemon/src/aclient/api_client.rs b/crates/daemon/src/aclient/api_client.rs
index 954426b4..1eba51bd 100644
--- a/crates/daemon/src/aclient/api_client.rs
+++ b/crates/daemon/src/aclient/api_client.rs
@@ -141,17 +141,6 @@ impl<'a> Client<'a> {
})
}
- async fn delete_store(&self) -> Result<()> {
- let url = make_url(self.sync_addr, "/store", self.user_id)?;
- let url = Url::parse(url.as_str())?;
-
- let resp = self.inner.delete(url).send().await?;
-
- handle_resp_error(resp).await?;
-
- Ok(())
- }
-
pub(crate) async fn post_records(&self, records: &[Record<EncryptedData>]) -> Result<()> {
let url = make_url(self.sync_addr, "/record", self.user_id)?;
let url = Url::parse(url.as_str())?;