summaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
authorHendrik Sollich <hendrik@hoodie.de>2016-11-11 23:47:01 +0100
committerHendrik Sollich <hendrik@hoodie.de>2016-11-11 23:47:01 +0100
commit6ab5ead218eb85d4de4c2afd7af60ed3e9adf472 (patch)
treefb3b85396503c0b3e636e0e5f2e436c1517269c1 /src/lib.rs
parentff7df7f8b735dce2eda541298d2ab9a6eba25f22 (diff)
added value types
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 5a5977c..0d1354b 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -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]