izihawa_ipfs_api_backend_hyper/lib.rs
1// Copyright 2021 rust-ipfs-api Developers
2//
3// Licensed under the Apache License, Version 2.0, <LICENSE-APACHE or
4// http://apache.org/licenses/LICENSE-2.0> or the MIT license <LICENSE-MIT or
5// http://opensource.org/licenses/MIT>, at your option. This file may not be
6// copied, modified, or distributed except according to those terms.
7//
8
9extern crate hyper_multipart_rfc7578 as multipart;
10
11mod backend;
12mod error;
13
14pub use crate::{backend::HyperBackend as IpfsClient, error::Error};
15pub use ipfs_api_prelude::{
16 request::{self, KeyType, Logger, LoggingLevel, ObjectTemplate},
17 response, ApiError, BackendWithGlobalOptions, GlobalOptions, IpfsApi, TryFromUri,
18};
19pub use multipart::client::multipart::Form;