Skip to content

Commit 9740ca6

Browse files
committed
feat: make flow input empty
1 parent 146050f commit 9740ca6

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

proto/shared/shared.flow.proto

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ message NodeParameter {
6868
message ReferenceValue {
6969
oneof target {
7070
// Ref Value points to flow input
71-
int64 flow_input = 1;
71+
FlowInput flow_input = 1;
7272
// Ref Value points to a Result of a node, the int is the id of the node
7373
int64 result = 2;
7474
// Points to Value that is contained inside of a node
@@ -77,6 +77,8 @@ message ReferenceValue {
7777
repeated ReferencePath paths = 4;
7878
}
7979

80+
message FlowInput {}
81+
8082
message InputType {
8183
// Id of the node
8284
int64 node_id = 1;

0 commit comments

Comments
 (0)