Browse Source
Fix clippy lints
Signed-off-by: BlackDex <black.dex@gmail.com>
pull/5798/head
BlackDex
2 months ago
No known key found for this signature in database
GPG Key ID: 58C80A2AA6C765E1
1 changed files with
5 additions and
1 deletions
-
src/db/models/device.rs
|
|
@ -3,7 +3,11 @@ use derive_more::{Display, From}; |
|
|
|
use serde_json::Value; |
|
|
|
|
|
|
|
use super::{AuthRequest, UserId}; |
|
|
|
use crate::{crypto, util::{format_date, get_uuid}, CONFIG}; |
|
|
|
use crate::{ |
|
|
|
crypto, |
|
|
|
util::{format_date, get_uuid}, |
|
|
|
CONFIG, |
|
|
|
}; |
|
|
|
use macros::IdFromParam; |
|
|
|
|
|
|
|
db_object! { |
|
|
|