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 6e91320709 - 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::from(provided_time.to_utc());
let converted: std::time::SystemTime = provided_time.clone().into();
Ok(converted)
}
}