Added item's creation_date

This commit is contained in:
daladim 2021-04-16 09:05:30 +02:00
parent 092765f769
commit 3bf1fed5b9
5 changed files with 84 additions and 22 deletions

View file

@ -32,6 +32,10 @@ impl Event {
&self.name
}
pub fn creation_date(&self) -> Option<&DateTime<Utc>> {
unimplemented!()
}
pub fn last_modified(&self) -> &DateTime<Utc> {
unimplemented!()
}