Skip to content

Commit

Permalink
release version and prompted starring string adjusted
Browse files Browse the repository at this point in the history
  • Loading branch information
WoodProgrammer committed May 29, 2023
1 parent 58df9ba commit 2b4367a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/main.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
package main

import "fmt"

func main() {

releaseState := Version{releaseNumber: "0.0.4", state: "demo"}
fmt.Println("################################################")
fmt.Println("Helm Migrate Plugin version is :%s state is : ", releaseState.releaseNumber, releaseState.state)
fmt.Println("################################################\n")

Execute()

}
4 changes: 4 additions & 0 deletions src/types.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
package main

type Version struct {
releaseNumber string
state string
}
type HelmRelease struct {
Name string
Version string
Expand Down

0 comments on commit 2b4367a

Please sign in to comment.