Private
Public Access
1
0

remove unused Date model

This commit is contained in:
2024-12-21 17:52:11 -08:00
parent ab44a169e6
commit 53d4604b63
2 changed files with 0 additions and 18 deletions

View File

@@ -1,17 +0,0 @@
use time::OffsetDateTime;
pub struct Date {
pub dt: OffsetDateTime,
}
impl Date {
pub fn new(dt: OffsetDateTime) -> Self {
Self { dt }
}
}
impl Default for Date {
fn default() -> Self {
Self { dt: OffsetDateTime::now_utc() }
}
}

View File

@@ -1,6 +1,5 @@
pub mod conversation; pub mod conversation;
pub mod participant; pub mod participant;
pub mod date;
pub mod db; pub mod db;
// Re-export the public types // Re-export the public types