summaryrefslogtreecommitdiffstats
path: root/ipfs-api/src/request/pubsub.rs
diff options
context:
space:
mode:
Diffstat (limited to 'ipfs-api/src/request/pubsub.rs')
-rw-r--r--ipfs-api/src/request/pubsub.rs53
1 files changed, 0 insertions, 53 deletions
diff --git a/ipfs-api/src/request/pubsub.rs b/ipfs-api/src/request/pubsub.rs
deleted file mode 100644
index b2a46bc..0000000
--- a/ipfs-api/src/request/pubsub.rs
+++ /dev/null
@@ -1,53 +0,0 @@
-// Copyright 2017 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.
-//
-
-use crate::request::ApiRequest;
-use crate::serde::Serialize;
-
-pub struct PubsubLs;
-
-impl_skip_serialize!(PubsubLs);
-
-impl ApiRequest for PubsubLs {
- const PATH: &'static str = "/pubsub/ls";
-}
-
-#[derive(Serialize)]
-pub struct PubsubPeers<'a> {
- #[serde(rename = "arg")]
- pub topic: Option<&'a str>,
-}
-
-impl<'a> ApiRequest for PubsubPeers<'a> {
- const PATH: &'static str = "/pubsub/peers";
-}
-
-#[derive(Serialize)]
-pub struct PubsubPub<'a> {
- #[serde(rename = "arg")]
- pub topic: &'a str,
-
- #[serde(rename = "arg")]
- pub payload: &'a str,
-}
-
-impl<'a> ApiRequest for PubsubPub<'a> {
- const PATH: &'static str = "/pubsub/pub";
-}
-
-#[derive(Serialize)]
-pub struct PubsubSub<'a> {
- #[serde(rename = "arg")]
- pub topic: &'a str,
-
- pub discover: bool,
-}
-
-impl<'a> ApiRequest for PubsubSub<'a> {
- const PATH: &'static str = "/pubsub/sub";
-}