From 84d20c52fa1c7e6e173d480c11d9b340584ffb35 Mon Sep 17 00:00:00 2001 From: mr Date: Wed, 29 Jan 2025 16:49:25 +0100 Subject: [PATCH] adding inputs output struct based on argo naming for now --- models/workflow/graph/link.go | 1 + 1 file changed, 1 insertion(+) diff --git a/models/workflow/graph/link.go b/models/workflow/graph/link.go index be389c4..c74b53d 100644 --- a/models/workflow/graph/link.go +++ b/models/workflow/graph/link.go @@ -6,6 +6,7 @@ type StorageProcessingGraphLink struct { Write bool `json:"write" bson:"write"` Source string `json:"source" bson:"source"` Destination string `json:"destination" bson:"destination"` + FileName string `json:"file_name" bson:"file_name"` } // GraphLink is a struct that represents a link between two items in a graph