├── .gitignore ├── .vscode └── launch.json ├── LICENSE ├── Makefile ├── README.md ├── cmd └── main.go ├── go.mod ├── go.sum └── server ├── connection.go └── proxy_server.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kellabyte/frenzy/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kellabyte/frenzy/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kellabyte/frenzy/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kellabyte/frenzy/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kellabyte/frenzy/HEAD/README.md -------------------------------------------------------------------------------- /cmd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kellabyte/frenzy/HEAD/cmd/main.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kellabyte/frenzy/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kellabyte/frenzy/HEAD/go.sum -------------------------------------------------------------------------------- /server/connection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kellabyte/frenzy/HEAD/server/connection.go -------------------------------------------------------------------------------- /server/proxy_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kellabyte/frenzy/HEAD/server/proxy_server.go --------------------------------------------------------------------------------