Skip to content

Commit

Permalink
fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
ianedwards committed Sep 26, 2023
1 parent aedcd9d commit 428d7c4
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions api/types/deployment_target.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,14 @@ import (
"github.com/google/uuid"
)

// DeploymentTarget is a struct that represents a unique cluster, namespace pair that a Porter app is deployed to.
type DeploymentTarget struct {
ID uuid.UUID `json:"id"`
ProjectID uint `json:"project_id"`
ClusterID uint `json:"cluster_id"`

Selector string `json:"selector"`
SelectorType string `json:"selector_type"`
CreatedAt time.Time `json:"created_at"`
UpdatedAt time.Time `json:"updated_at"`
Selector string `json:"selector"`
SelectorType string `json:"selector_type"`
CreatedAt time.Time `json:"created_at"`
UpdatedAt time.Time `json:"updated_at"`
}

0 comments on commit 428d7c4

Please sign in to comment.