summaryrefslogtreecommitdiffstats
path: root/ipfs-api-backend-hyper/src/lib.rs
diff options
context:
space:
mode:
authorFerris Tseng <ferristseng@fastmail.fm>2021-02-22 20:42:21 -0500
committerFerris Tseng <ferristseng@fastmail.fm>2021-02-22 20:42:21 -0500
commitcc0131c9c6bea175853c995768fc817b5b066be7 (patch)
tree0f3f11c7c3a7bd52aaf1fb647901c0f44e1f9b9d /ipfs-api-backend-hyper/src/lib.rs
parent7dddbde3a1abcb96b75aa4636a07498193f7c551 (diff)
add hyper backend
Diffstat (limited to 'ipfs-api-backend-hyper/src/lib.rs')
-rw-r--r--ipfs-api-backend-hyper/src/lib.rs14
1 files changed, 14 insertions, 0 deletions
diff --git a/ipfs-api-backend-hyper/src/lib.rs b/ipfs-api-backend-hyper/src/lib.rs
new file mode 100644
index 0000000..276d34a
--- /dev/null
+++ b/ipfs-api-backend-hyper/src/lib.rs
@@ -0,0 +1,14 @@
+// Copyright 2019 rust-ipfs-api Developers
+//
+// Licensed under the Apache License, Version 2.0, <LICENSE-APACHE or
+// http://apache.org/licenses/LICENSE-2.0> or the MIT license <LICENSE-MIT or
+// http://opensource.org/licenses/MIT>, at your option. This file may not be
+// copied, modified, or distributed except according to those terms.
+//
+
+extern crate hyper_multipart_rfc7578 as multipart;
+
+mod backend;
+mod error;
+
+pub use crate::{backend::HyperBackend as IpfsApi, error::Error};