Skip to content

Commit

Permalink
Fix missing GetMetadata method (#48)
Browse files Browse the repository at this point in the history
  • Loading branch information
dpetzold authored and mtibben committed Jun 20, 2019
1 parent 2e3b4e5 commit 372329b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ os:
- osx
addons:
homebrew:
update: True
packages:
- gnupg
- pass
Expand Down
4 changes: 4 additions & 0 deletions pass.go
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,10 @@ func (k *passKeyring) Get(key string) (Item, error) {
return decoded, err
}

func (k *passKeyring) GetMetadata(key string) (Metadata, error) {
return Metadata{}, nil
}

func (k *passKeyring) Set(i Item) error {
bytes, err := json.Marshal(i)
if err != nil {
Expand Down

0 comments on commit 372329b

Please sign in to comment.