Skip to content

Commit c5d9aff

Browse files
committed
Updated bitwarden client
1 parent 71e7fe3 commit c5d9aff

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

go.mod

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,14 @@ require (
1212
github.com/stretchr/testify v1.9.0
1313
github.com/xdg-go/pbkdf2 v1.0.0
1414
golang.org/x/crypto v0.19.0
15+
golang.org/x/term v0.17.0
1516
)
1617

1718
require (
1819
github.com/davecgh/go-spew v1.1.1 // indirect
1920
github.com/mattn/go-runewidth v0.0.15 // indirect
2021
github.com/pmezard/go-difflib v1.0.0 // indirect
2122
github.com/rivo/uniseg v0.4.7 // indirect
23+
golang.org/x/sys v0.17.0 // indirect
2224
gopkg.in/yaml.v3 v3.0.1 // indirect
2325
)

go.sum

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@ github.com/xdg-go/pbkdf2 v1.0.0 h1:Su7DPu48wXMwC3bs7MCNG+z4FhcyEuz5dlvchbq0B0c=
2121
github.com/xdg-go/pbkdf2 v1.0.0/go.mod h1:jrpuAogTd400dnrH08LKmI/xc1MbPOebTwRqcT5RDeI=
2222
golang.org/x/crypto v0.19.0 h1:ENy+Az/9Y1vSrlrvBSyna3PITt4tiZLf7sgCjZBX7Wo=
2323
golang.org/x/crypto v0.19.0/go.mod h1:Iy9bg/ha4yyC70EfRS8jz+B6ybOBKMaSxLj6P6oBDfU=
24+
golang.org/x/sys v0.17.0 h1:25cE3gD+tdBA7lp7QfhuV+rJiE9YXTcS3VG1SqssI/Y=
25+
golang.org/x/sys v0.17.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
26+
golang.org/x/term v0.17.0 h1:mkTF7LCd6WGJNL3K1Ad7kwxNfYAW6a8a8QqtMblp/4U=
27+
golang.org/x/term v0.17.0/go.mod h1:lLRBjIVuehSbZlaOtGMbcMncT+aqLLLmKrsjNrUguwk=
2428
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM=
2529
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
2630
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=

pkg/bitwarden/schema/session.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,8 @@ import (
1717
///////////////////////////////////////////////////////////////////////////////
1818
// TYPES
1919

20+
// Session represents a long-running session with the Bitwarden server
2021
type Session struct {
21-
ReaderWriter
22-
2322
// Device identifier
2423
Device *Device `json:"device,omitempty"`
2524

0 commit comments

Comments
 (0)