1//! Persisted state setting keys for the sync domain.
23use bitwarden_state::register_setting_key;
4use chrono::{DateTime, Utc};
56register_setting_key!(
7/// Setting key for the timestamp of the last successful sync (or skip).
8pub(crate) const LAST_SYNC: DateTime<Utc> = "last_sync"
9);