Update models #29

Merged
phoenix merged 19 commits from update_models into main 2026-06-27 17:20:20 -04:00
Showing only changes of commit 9210c3b7ae - Show all commits
+1 -1
View File
@@ -54,7 +54,7 @@ mod util {
pub fn time_to_std_time(
provided_time: &time::OffsetDateTime,
) -> Result<std::time::SystemTime, std::time::SystemTimeError> {
let converted: std::time::SystemTime = provided_time.clone().into();
let converted: std::time::SystemTime = (*provided_time).into();
Ok(converted)
}
}