summaryrefslogtreecommitdiffstats
path: root/types/src/lib.rs
diff options
context:
space:
mode:
authorsyn <isaqtm@gmail.com>2020-05-25 20:17:39 +0300
committersyn <isaqtm@gmail.com>2020-05-25 20:17:39 +0300
commitb338d7e2ae3d9e921d513943bd8fcd1043d60dd1 (patch)
treeb5ca1b689259f9698284a7453f28484b1f0090f7 /types/src/lib.rs
parentb6efc9b39a367da829e84af581387733600c08d7 (diff)
downloadpert-master.tar.gz
Finish typingHEADmaster
Every single piece of fucking shit is typed now
Diffstat (limited to 'types/src/lib.rs')
-rw-r--r--types/src/lib.rs15
1 files changed, 15 insertions, 0 deletions
diff --git a/types/src/lib.rs b/types/src/lib.rs
new file mode 100644
index 0000000..63f51cf
--- /dev/null
+++ b/types/src/lib.rs
@@ -0,0 +1,15 @@
+extern crate serde;
+#[macro_use]
+extern crate serde_derive;
+extern crate serde_aux;
+
+mod tl_types;
+mod tl_methods;
+
+pub mod types {
+ pub use crate::tl_types::*;
+}
+
+pub mod methods {
+ pub use crate::tl_methods::*;
+}