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.
1 parent 3547c00 commit 62fa3aeCopy full SHA for 62fa3ae
1 file changed
src/flow_definition/mod.rs
@@ -1,3 +1,5 @@
1
+#![allow(dead_code)]
2
+
3
mod error;
4
mod feature;
5
@@ -53,7 +55,7 @@ impl LoadedModule {
53
55
}
54
56
57
Module {
- identifier: self.config.identifier,
58
+ identifier: self.config.identifier.clone(),
59
name: self.config.name,
60
description: self.config.description,
61
documentation: self.config.documentation,
@@ -67,6 +69,7 @@ impl LoadedModule {
67
69
definition_data_types: self.data_types,
68
70
configurations: self.configurations,
71
definitions: self.definitions,
72
+ definition_source: self.config.identifier,
73
74
75
0 commit comments