summaryrefslogtreecommitdiffhomepage
path: root/tools/unitctl/unit-openapi/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tools/unitctl/unit-openapi/src/lib.rs')
-rw-r--r--tools/unitctl/unit-openapi/src/lib.rs12
1 files changed, 12 insertions, 0 deletions
diff --git a/tools/unitctl/unit-openapi/src/lib.rs b/tools/unitctl/unit-openapi/src/lib.rs
new file mode 100644
index 00000000..a71f18d6
--- /dev/null
+++ b/tools/unitctl/unit-openapi/src/lib.rs
@@ -0,0 +1,12 @@
+#![allow(clippy::all)]
+#[macro_use]
+extern crate serde_derive;
+
+extern crate futures;
+extern crate hyper;
+extern crate serde;
+extern crate serde_json;
+extern crate url;
+
+pub mod apis;
+pub mod models;