Execute go get -u

This commit is contained in:
Will Owens 2022-02-26 17:44:35 -05:00
parent ef511da787
commit f050474f94
2 changed files with 36 additions and 8 deletions

19
go.mod
View file

@ -3,17 +3,20 @@ module github.com/ghthor/gotty
go 1.17
require (
github.com/NYTimes/gziphandler v0.0.0-20170804200234-967539e5e271
github.com/codegangsta/cli v1.19.1
github.com/elazarl/go-bindata-assetfs v0.0.0-20150813044622-d5cac425555c
github.com/fatih/structs v0.0.0-20150526064352-a9f7daa9c272
github.com/gorilla/websocket v0.0.0-20150811171432-b6ab76f1fe98
github.com/kr/pty v0.0.0-20150511174710-5cf931ef8f76
github.com/pkg/errors v0.8.1-0.20161029093637-248dadf4e906
github.com/NYTimes/gziphandler v1.1.1
github.com/codegangsta/cli v1.20.0
github.com/elazarl/go-bindata-assetfs v1.0.1
github.com/fatih/structs v1.1.0
github.com/gorilla/websocket v1.5.0
github.com/kr/pty v1.1.8
github.com/pkg/errors v0.9.1
github.com/yudai/hcl v0.0.0-20151013225006-5fa2393b3552
)
require (
github.com/hashicorp/go-multierror v0.0.0-20150608033521-56912fb08d85 // indirect
github.com/creack/pty v1.1.17 // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/hashicorp/go-multierror v1.1.1 // indirect
github.com/stretchr/testify v1.7.0 // indirect
golang.org/x/sys v0.0.0-20220224120231-95c6836cb0e7 // indirect
)