Skip to main content

bitwarden_sync/
state.rs

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