feat: last user

This commit is contained in:
Ashley Wulber 2025-06-30 09:36:05 -04:00 committed by Jeremy Soller
parent ab2ae6d31e
commit bbaa1935f4
2 changed files with 25 additions and 5 deletions

View file

@ -17,6 +17,7 @@ pub const CONFIG_VERSION: u64 = 1;
pub struct Config {
#[serde(skip_serializing_if = "HashMap::is_empty")]
pub users: HashMap<NonZeroU32, user::UserState>,
pub last_user: Option<NonZeroU32>,
}
impl Config {