We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
base_url
1 parent 9251780 commit e07d05aCopy full SHA for e07d05a
src/client.rs
@@ -28,6 +28,11 @@ impl VssClient {
28
Self { base_url: String::from(base_url), client }
29
}
30
31
+ /// Returns the underlying base URL.
32
+ pub fn base_url(&self) -> &str {
33
+ &self.base_url
34
+ }
35
+
36
/// Fetches a value against a given `key` in `request`.
37
/// Makes a service call to the `GetObject` endpoint of the VSS server.
38
/// For API contract/usage, refer to docs for [`GetObjectRequest`] and [`GetObjectResponse`].
0 commit comments