io-calendar 0.0.1

Set of I/O-free coroutines to manage calendars
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#[path = "create-calendar.rs"]
pub mod create_calendar;
#[path = "create-item.rs"]
pub mod create_item;
#[path = "delete-calendar.rs"]
pub mod delete_calendar;
#[path = "delete-item.rs"]
pub mod delete_item;
#[path = "list-calendars.rs"]
pub mod list_calendars;
#[path = "list-items.rs"]
pub mod list_items;
#[path = "read-item.rs"]
pub mod read_item;
#[path = "update-calendar.rs"]
pub mod update_calendar;
#[path = "update-item.rs"]
pub mod update_item;