├── .gitignore ├── README.md ├── client.go ├── go.mod ├── main.go └── server.go /.gitignore: -------------------------------------------------------------------------------- 1 | egressinator 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHAS/egressinator/HEAD/README.md -------------------------------------------------------------------------------- /client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHAS/egressinator/HEAD/client.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module egressinator 2 | 3 | go 1.18 4 | -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHAS/egressinator/HEAD/main.go -------------------------------------------------------------------------------- /server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHAS/egressinator/HEAD/server.go --------------------------------------------------------------------------------