refactor: Remove some unused deserialization code

Signed-off-by: Christoph Heiss <contact@christoph-heiss.at>
This commit is contained in:
Christoph Heiss 2022-08-04 12:52:47 +02:00
parent 2480696c27
commit 684ba7b646
Signed by: c8h4
GPG key ID: 9C82009BEEDEA0FF

View file

@ -177,11 +177,6 @@ pub struct CipherEntry {
pub last_changed: DateTime<Utc>,
}
#[derive(Debug, Deserialize, Serialize)]
pub struct Domains {
// TODO
}
#[derive(Debug, Deserialize, Serialize)]
pub struct SyncResponse {
#[serde(alias = "Object")]
@ -194,6 +189,4 @@ pub struct SyncResponse {
pub collections: Vec<String>,
#[serde(alias = "Ciphers")]
pub ciphers: Vec<CipherEntry>,
#[serde(alias = "Domains", skip)]
domains: Option<Domains>,
}