Run clippy fixes

This commit is contained in:
2025-02-14 12:00:05 +01:00
parent 8b7d2ad3f7
commit 1e2247abe2
6 changed files with 30 additions and 38 deletions

View File

@@ -19,13 +19,13 @@ impl Session {
let created_at = Utc::now();
let expires_at = Utc::now() + Duration::days(7);
return Self {
Self {
session_id,
user_id,
token,
expires_at,
created_at,
};
}
}
}