File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -12,12 +12,14 @@ require (
12
12
github.com/stretchr/testify v1.9.0
13
13
github.com/xdg-go/pbkdf2 v1.0.0
14
14
golang.org/x/crypto v0.19.0
15
+ golang.org/x/term v0.17.0
15
16
)
16
17
17
18
require (
18
19
github.com/davecgh/go-spew v1.1.1 // indirect
19
20
github.com/mattn/go-runewidth v0.0.15 // indirect
20
21
github.com/pmezard/go-difflib v1.0.0 // indirect
21
22
github.com/rivo/uniseg v0.4.7 // indirect
23
+ golang.org/x/sys v0.17.0 // indirect
22
24
gopkg.in/yaml.v3 v3.0.1 // indirect
23
25
)
Original file line number Diff line number Diff line change @@ -21,6 +21,10 @@ github.com/xdg-go/pbkdf2 v1.0.0 h1:Su7DPu48wXMwC3bs7MCNG+z4FhcyEuz5dlvchbq0B0c=
21
21
github.com/xdg-go/pbkdf2 v1.0.0 /go.mod h1:jrpuAogTd400dnrH08LKmI/xc1MbPOebTwRqcT5RDeI =
22
22
golang.org/x/crypto v0.19.0 h1:ENy+Az/9Y1vSrlrvBSyna3PITt4tiZLf7sgCjZBX7Wo =
23
23
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 =
24
28
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM =
25
29
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 /go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0 =
26
30
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA =
Original file line number Diff line number Diff line change @@ -17,9 +17,8 @@ import (
17
17
///////////////////////////////////////////////////////////////////////////////
18
18
// TYPES
19
19
20
+ // Session represents a long-running session with the Bitwarden server
20
21
type Session struct {
21
- ReaderWriter
22
-
23
22
// Device identifier
24
23
Device * Device `json:"device,omitempty"`
25
24
You can’t perform that action at this time.
0 commit comments