├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── config.go ├── fwd.go ├── go.mod ├── go.sum ├── kubectl.go ├── main.go ├── net_darwin.go └── net_linux.go /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamglt/fwd/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamglt/fwd/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamglt/fwd/HEAD/README.md -------------------------------------------------------------------------------- /config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamglt/fwd/HEAD/config.go -------------------------------------------------------------------------------- /fwd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamglt/fwd/HEAD/fwd.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamglt/fwd/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamglt/fwd/HEAD/go.sum -------------------------------------------------------------------------------- /kubectl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamglt/fwd/HEAD/kubectl.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamglt/fwd/HEAD/main.go -------------------------------------------------------------------------------- /net_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamglt/fwd/HEAD/net_darwin.go -------------------------------------------------------------------------------- /net_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamglt/fwd/HEAD/net_linux.go --------------------------------------------------------------------------------