adding inputs output struct based on argo naming for now^C

This commit is contained in:
mr 2025-01-29 14:33:24 +01:00
parent d111a97521
commit ede2d5fd53

View File

@ -1,9 +1,12 @@
package graph
import "cloud.o-forge.io/core/oc-lib/models/common/models"
type StorageProcessingGraphLink struct {
Write bool `json:"write" bson:"write"`
Source string `json:"source" bson:"source"`
Destination string `json:"destination" bson:"destination"`
Write bool `json:"write" bson:"write"`
Source string `json:"source" bson:"source"`
Destination string `json:"destination" bson:"destination"`
Env []models.Param `json:"env" bson:"env"`
}
// GraphLink is a struct that represents a link between two items in a graph