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