Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pkg/commands/secretstoreentry/create.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const (
// When we do rotate it, we will need to update this value and release a
// new version of the CLI. However, users can also override this with
// the FASTLY_USE_API_SIGNING_KEY environment variable.
var signingKey []byte = mustDecode("CrO/A92vkxEZjtTW7D/Sr+1EMf/q9BahC0sfLkWa+0k=")
var signingKey = mustDecode("CrO/A92vkxEZjtTW7D/Sr+1EMf/q9BahC0sfLkWa+0k=")

func mustDecode(s string) []byte {
b, err := base64.StdEncoding.DecodeString(s)
Expand Down
1 change: 1 addition & 0 deletions pkg/text/progress.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ import (
"github.com/theckman/yacspin"
)

// NewSpinner returns a new instance of a terminal prompt spinner.
func NewSpinner(out io.Writer) (*yacspin.Spinner, error) {
spinner, err := yacspin.New(yacspin.Config{
CharSet: yacspin.CharSets[9],
Expand Down