diff options
author | Alex Auvolat <alex@adnab.me> | 2022-02-16 13:00:26 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2022-02-16 13:00:26 +0100 |
commit | dc0b5c0305284a1f33417e184c1e4d0ef6e7c032 (patch) | |
tree | 7a85ea2b3a3b56559ffe33f53f982f6173d8b247 | |
parent | c20d36892bcccae580603249706ba60d54a46d7f (diff) | |
download | netapp-dc0b5c0305284a1f33417e184c1e4d0ef6e7c032.tar.gz netapp-dc0b5c0305284a1f33417e184c1e4d0ef6e7c032.zip |
Add method to know endpoint path
-rw-r--r-- | Cargo.lock | 2 | ||||
-rw-r--r-- | Cargo.toml | 2 | ||||
-rw-r--r-- | src/endpoint.rs | 5 |
3 files changed, 7 insertions, 2 deletions
@@ -398,7 +398,7 @@ dependencies = [ [[package]] name = "netapp" -version = "0.3.0" +version = "0.3.1" dependencies = [ "arc-swap", "async-trait", @@ -1,6 +1,6 @@ [package] name = "netapp" -version = "0.3.0" +version = "0.3.1" authors = ["Alex Auvolat <alex@adnab.me>"] edition = "2018" license-file = "LICENSE" diff --git a/src/endpoint.rs b/src/endpoint.rs index f30b25e..760bf32 100644 --- a/src/endpoint.rs +++ b/src/endpoint.rs @@ -75,6 +75,11 @@ where } } + /// Get the path of this endpoint + pub fn path(&self) -> &str { + &self.path + } + /// Set the object that is responsible of handling requests to /// this endpoint on the local node. pub fn set_handler(&self, h: Arc<H>) { |