Skip to content

Commit

Permalink
fixed model to use the yaml parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
yairsimantov20 committed Apr 2, 2024
1 parent c636f20 commit f30f8da
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkg/port/models.go
Original file line number Diff line number Diff line change
Expand Up @@ -221,9 +221,9 @@ type AggregatedResource struct {
}

type IntegrationAppConfig struct {
DeleteDependents bool `json:"deleteDependents,omitempty"`
CreateMissingRelatedEntities bool `json:"createMissingRelatedEntities,omitempty"`
Resources []Resource `json:"resources,omitempty"`
DeleteDependents bool `json:"deleteDependents,omitempty" yaml:"deleteDependents,omitempty"`
CreateMissingRelatedEntities bool `json:"createMissingRelatedEntities,omitempty" yaml:"createMissingRelatedEntities,omitempty"`
Resources []Resource `json:"resources,omitempty" yaml:"resources,omitempty"`
}

type Config struct {
Expand Down

0 comments on commit f30f8da

Please sign in to comment.