summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <matthias.beyer@ifm.com>2022-06-20 13:16:44 +0200
committerMatthias Beyer <matthias.beyer@ifm.com>2022-06-20 13:16:47 +0200
commit6b22b9a29e37a4319395adc029b50a3dd2f5a8b3 (patch)
tree677a8c3ffa2aca0d3c1106d3fd85a8c458d5594c
parentf729472ddd682d11c726ed301451c80f7334175a (diff)
Make TedgeApplication::config() pub
Signed-off-by: Matthias Beyer <matthias.beyer@ifm.com>
-rw-r--r--crates/core/tedge_core/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/core/tedge_core/src/lib.rs b/crates/core/tedge_core/src/lib.rs
index 4263211f..b7286273 100644
--- a/crates/core/tedge_core/src/lib.rs
+++ b/crates/core/tedge_core/src/lib.rs
@@ -70,7 +70,7 @@ impl TedgeApplication {
&self.config_path
}
- pub(crate) fn config(&self) -> &TedgeConfiguration {
+ pub fn config(&self) -> &TedgeConfiguration {
&self.config
}