We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1401ff6 commit 4df65d9Copy full SHA for 4df65d9
apptrust/model/promote_app_version_request.go
@@ -8,12 +8,10 @@ const (
8
PromotionTypeDryRun = "dry_run"
9
)
10
11
-var (
12
- PromotionTypeValues = []string{
13
- PromotionTypeCopy,
14
- PromotionTypeMove,
15
- }
16
-)
+var PromotionTypeValues = []string{
+ PromotionTypeCopy,
+ PromotionTypeMove,
+}
17
18
type PromoteAppVersionRequest struct {
19
Stage string `json:"stage"`
apptrust/service/versions/version_service.go
@@ -4,9 +4,10 @@ package versions
4
5
import (
6
"fmt"
7
- "github.com/jfrog/jfrog-cli-application/apptrust/service"
"strconv"
+ "github.com/jfrog/jfrog-cli-application/apptrust/service"
+
"github.com/jfrog/jfrog-cli-application/apptrust/model"
0 commit comments