diff options
author | Hendrik Sollich <hendrik@hoodie.de> | 2016-11-11 23:47:01 +0100 |
---|---|---|
committer | Hendrik Sollich <hendrik@hoodie.de> | 2016-11-11 23:47:01 +0100 |
commit | 6ab5ead218eb85d4de4c2afd7af60ed3e9adf472 (patch) | |
tree | fb3b85396503c0b3e636e0e5f2e436c1517269c1 /src/lib.rs | |
parent | ff7df7f8b735dce2eda541298d2ab9a6eba25f22 (diff) |
added value types
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -20,10 +20,9 @@ mod properties; mod calendar; pub mod repeats; -pub use properties::{Property, Parameter}; +pub use properties::{Property, Parameter, Class, ValueType}; //pub use components::{event, todo}; pub use components::{Event, Todo, Component}; -pub use properties::Class; pub use calendar::Calendar; #[test] |