Created Item (enum of either a task or en event)

This commit is contained in:
daladim 2021-02-28 11:54:31 +01:00
parent e60ad19fa5
commit 571420126f
7 changed files with 257 additions and 112 deletions

View file

@ -12,8 +12,12 @@ pub mod traits;
pub mod calendar;
pub use calendar::Calendar;
mod item;
pub use item::Item;
mod task;
pub use task::Task;
mod event;
pub use event::Event;
pub mod provider;
pub use provider::Provider;