Skip to content

Commit

Permalink
Updated samples
Browse files Browse the repository at this point in the history
  • Loading branch information
Neo-Ciber94 committed Dec 17, 2022
1 parent 777d3c1 commit 64dd072
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions samples/web_api/src/entities/audit_log.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use crate::repositories::Entity;
use actix_web::http::Method;
use chrono::{DateTime, Utc, MIN_DATETIME};
use chrono::{DateTime, Utc};
use serde::{Deserialize, Serialize};
use std::net::IpAddr;
use uuid::Uuid;
Expand Down Expand Up @@ -119,7 +119,7 @@ impl AuditLogBuilder {
ip: None,
duration_ms: 0,
user_agent: None,
created_at: MIN_DATETIME,
created_at: DateTime::<Utc>::MIN_UTC,
},
}
}
Expand Down

0 comments on commit 64dd072

Please sign in to comment.