Files
vpngate/go.mod
Dave Gallant a2afbc1e35 Add initial prototype (#1)
* Add survey library to select server

* Add speedtest

* Add --random flag to connect

* Add list command

* Cache server list

* Tail the openvpn logs so that it appears in vpngate logs

* Add goreleaser action

* Add golangci-lint action
2020-12-31 02:56:01 -05:00

25 lines
857 B
Modula-2

module github.com/davegallant/vpngate
go 1.15
require (
github.com/AlecAivazis/survey/v2 v2.2.7
github.com/golangci/golangci-lint v1.27.0 // indirect
github.com/hpcloud/tail v1.0.0
github.com/jszwec/csvutil v1.4.0
github.com/juju/errors v0.0.0-20200330140219-3fe23663418f
github.com/juju/testing v0.0.0-20201216035041-2be42bba85f3 // indirect
github.com/mattn/go-colorable v0.1.8 // indirect
github.com/mattn/go-runewidth v0.0.8 // indirect
github.com/olekukonko/tablewriter v0.0.4
github.com/rs/zerolog v1.20.0
github.com/showwin/speedtest-go v1.1.0
github.com/spf13/afero v1.3.2
github.com/spf13/cobra v1.1.1
github.com/stretchr/testify v1.6.1 // indirect
golang.org/x/sys v0.0.0-20201009025420-dfb3f7c4e634 // indirect
golang.org/x/text v0.3.4 // indirect
gopkg.in/fsnotify.v1 v1.4.7 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
)