calendar-link 0.0.1

Rust library to generate an event link for Google Calendar, Yahoo! Calendar, Microsoft Outlook, etc.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod drivers;
mod err;
mod stringify;
mod time;
mod typ;

pub use drivers::*;
pub use err::*;
pub use stringify::*;
pub use time::*;
pub use typ::*;

pub fn create() {}