Skip to content

Commit

Permalink
Fixed workflow Inputs definition
Browse files Browse the repository at this point in the history
  • Loading branch information
laurentganne committed Jan 28, 2020
1 parent b1d82ce commit 2216dd3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tosca/workflows.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ package tosca
// A Workflow is the representation of a TOSCA Workflow
//
type Workflow struct {
Inputs map[string]ParameterDefinition `yaml:"inputs,omitempty" json:"inputs,omitempty"`
Steps map[string]*Step `yaml:"steps,omitempty" json:"steps,omitempty"`
Inputs map[string]PropertyDefinition `yaml:"inputs,omitempty" json:"inputs,omitempty"`
Steps map[string]*Step `yaml:"steps,omitempty" json:"steps,omitempty"`
}

// A Step is the representation of a TOSCA Workflow Step
Expand Down

0 comments on commit 2216dd3

Please sign in to comment.