minor: Remove unused warnings

This commit is contained in:
selfhoster selfhoster 2026-09-03 21:53:31 +02:00
commit b37c0665d3
4 changed files with 5 additions and 1 deletions

View file

@ -1,5 +1,7 @@
#[derive(Clone, Debug)]
pub struct Group {
#[expect(unused)]
name: String,
#[expect(unused)]
domain: String,
}

View file

@ -6,6 +6,7 @@ use crate::db::{Database, DatabaseInterface, Group, User, UserRef};
#[derive(Clone, Debug, Default)]
pub struct MemoryDatabase {
pub users: Vec<User>,
#[expect(unused)]
pub groups: Vec<Group>,
}