adding inputs output struct based on argo naming for now

This commit is contained in:
mr
2025-01-27 16:02:45 +01:00
parent 8b03df7923
commit 3ff7b47995
10 changed files with 51 additions and 191 deletions

View File

@@ -7,9 +7,10 @@ type Artifact struct {
}
type Param struct {
Attr string `json:"attr" bson:"attr" validate:"required"`
Value string `json:"value,omitempty" bson:"value,omitempty"`
Readonly bool `json:"readonly" bson:"readonly" default:"true"`
Attr string `json:"attr" bson:"attr" validate:"required"`
Value string `json:"value,omitempty" bson:"value,omitempty"`
Readonly bool `json:"readonly" bson:"readonly" default:"true"`
Optionnal bool `json:"optionnal" bson:"optionnal" default:"true"`
}
type InOutputs struct {