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 08e4ceb commit 92af8c5Copy full SHA for 92af8c5
crates/package/src/struct/feature.rs
@@ -0,0 +1,10 @@
1
+use serde::Deserialize;
2
+use tucana::shared::{DefinitionDataType, FlowType, RuntimeFunctionDefinition};
3
+
4
+#[derive(Deserialize, Debug, Clone)]
5
+pub struct Feature {
6
+ pub name: String,
7
+ pub data_types: Vec<DefinitionDataType>,
8
+ pub flow_types: Vec<FlowType>,
9
+ pub functions: Vec<RuntimeFunctionDefinition>,
10
+}
crates/package/src/struct/mod.rs
@@ -0,0 +1 @@
+pub mod feature;
0 commit comments