chore: run gofmt

This commit is contained in:
Devon Bautista 2025-04-14 16:37:20 -06:00 committed by David Allen
parent ee99d6e06d
commit a6dadfcdb5
Signed by: towk
GPG key ID: 0430CDBE22619155

View file

@ -64,7 +64,7 @@ var secretsStoreCmd = &cobra.Command{
Short: "Stores the given string value under secretID.",
Run: func(cmd *cobra.Command, args []string) {
var (
secretID string = args[0]
secretID = args[0]
secretValue string
store secrets.SecretStore
inputFileBytes []byte
@ -167,7 +167,7 @@ var secretsStoreCmd = &cobra.Command{
func isValidCredsJSON(val string) bool {
var (
valid bool = !json.Valid([]byte(val))
valid = !json.Valid([]byte(val))
creds map[string]string
err error
)