summaryrefslogtreecommitdiffstats
path: root/ipfs-api/src/request/bootstrap.rs
diff options
context:
space:
mode:
Diffstat (limited to 'ipfs-api/src/request/bootstrap.rs')
-rw-r--r--ipfs-api/src/request/bootstrap.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/ipfs-api/src/request/bootstrap.rs b/ipfs-api/src/request/bootstrap.rs
index 9ffd482..def3664 100644
--- a/ipfs-api/src/request/bootstrap.rs
+++ b/ipfs-api/src/request/bootstrap.rs
@@ -14,7 +14,7 @@ pub struct BootstrapAddDefault;
impl_skip_serialize!(BootstrapAddDefault);
impl ApiRequest for BootstrapAddDefault {
- const path: &'static str = "/bootstrap/add/default";
+ const PATH: &'static str = "/bootstrap/add/default";
}
#[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
@@ -23,7 +23,7 @@ pub struct BootstrapList;
impl_skip_serialize!(BootstrapList);
impl ApiRequest for BootstrapList {
- const path: &'static str = "/bootstrap/list";
+ const PATH: &'static str = "/bootstrap/list";
}
#[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
@@ -32,5 +32,5 @@ pub struct BootstrapRmAll;
impl_skip_serialize!(BootstrapRmAll);
impl ApiRequest for BootstrapRmAll {
- const path: &'static str = "/bootstrap/rm/all";
+ const PATH: &'static str = "/bootstrap/rm/all";
}