We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c7ba8f4 commit f374c7cCopy full SHA for f374c7c
1 file changed
internal/secret/store.go
@@ -16,8 +16,6 @@ import (
16
"gopkg.in/yaml.v3"
17
)
18
19
-
20
21
const (
22
// EnvToken is the environment variable for runtime token injection.
23
// When set, it bypasses the keyring entirely.
@@ -114,7 +112,7 @@ type Store struct {
114
112
}
115
113
116
type openOptions struct {
117
- fileDir string
+ fileDir string
118
119
120
// Option customises how the secret store is opened.
@@ -151,8 +149,6 @@ func Open(opts ...Option) (*Store, error) {
151
149
return &Store{kr: kr}, nil
152
150
153
154
155
156
// Set writes a secret value.
157
func (s *Store) Set(key, value string) error {
158
if s == nil || s.kr == nil {
0 commit comments