From 428d7c41a27b56f331e411e8713ff69785bfb6fc Mon Sep 17 00:00:00 2001 From: Ian Edwards Date: Tue, 26 Sep 2023 13:52:24 -0400 Subject: [PATCH] fix linter --- api/types/deployment_target.go | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/api/types/deployment_target.go b/api/types/deployment_target.go index b04e6046ab..2674a103e1 100644 --- a/api/types/deployment_target.go +++ b/api/types/deployment_target.go @@ -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"` }