├── .github └── dependabot.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── cmd └── phantom.go ├── go.mod ├── go.sum └── internal ├── clientmap └── clientmap.go ├── proto └── proto.go ├── proxy └── proxy.go └── util ├── struct_iter.go └── struct_iter_test.go /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhead/phantom/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhead/phantom/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhead/phantom/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhead/phantom/HEAD/README.md -------------------------------------------------------------------------------- /cmd/phantom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhead/phantom/HEAD/cmd/phantom.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhead/phantom/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhead/phantom/HEAD/go.sum -------------------------------------------------------------------------------- /internal/clientmap/clientmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhead/phantom/HEAD/internal/clientmap/clientmap.go -------------------------------------------------------------------------------- /internal/proto/proto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhead/phantom/HEAD/internal/proto/proto.go -------------------------------------------------------------------------------- /internal/proxy/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhead/phantom/HEAD/internal/proxy/proxy.go -------------------------------------------------------------------------------- /internal/util/struct_iter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhead/phantom/HEAD/internal/util/struct_iter.go -------------------------------------------------------------------------------- /internal/util/struct_iter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhead/phantom/HEAD/internal/util/struct_iter_test.go --------------------------------------------------------------------------------