├── .circleci └── config.yml ├── .editorconfig ├── .github └── dependabot.yml ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── SunProxy.png ├── config.yml ├── go.mod ├── go.sum ├── main.go ├── plugins └── test │ ├── main.js │ └── plugin.yml └── sun ├── command ├── command.go ├── defaults.go ├── map.go └── processor.go ├── config.go ├── config_test.go ├── event └── event.go ├── handler.go ├── ip_addr └── ip_addr.go ├── loadbalancer.go ├── loadbalancer_test.go ├── logger └── logger.go ├── packet ├── auth.go ├── disconnect.go ├── id.go ├── text.go ├── transfer.go └── user_info.go ├── planet.go ├── planet └── planet.go ├── plugin ├── plugin.go └── plugin_manager.go ├── ray.go ├── ray ├── ray.go └── translations.go ├── remote └── remote.go ├── resource_packs.go └── sun.go /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunProxy/sun/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunProxy/sun/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunProxy/sun/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunProxy/sun/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunProxy/sun/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunProxy/sun/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunProxy/sun/HEAD/README.md -------------------------------------------------------------------------------- /SunProxy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunProxy/sun/HEAD/SunProxy.png -------------------------------------------------------------------------------- /config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunProxy/sun/HEAD/config.yml -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunProxy/sun/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunProxy/sun/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunProxy/sun/HEAD/main.go -------------------------------------------------------------------------------- /plugins/test/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunProxy/sun/HEAD/plugins/test/main.js -------------------------------------------------------------------------------- /plugins/test/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunProxy/sun/HEAD/plugins/test/plugin.yml -------------------------------------------------------------------------------- /sun/command/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunProxy/sun/HEAD/sun/command/command.go -------------------------------------------------------------------------------- /sun/command/defaults.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunProxy/sun/HEAD/sun/command/defaults.go -------------------------------------------------------------------------------- /sun/command/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunProxy/sun/HEAD/sun/command/map.go -------------------------------------------------------------------------------- /sun/command/processor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunProxy/sun/HEAD/sun/command/processor.go -------------------------------------------------------------------------------- /sun/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunProxy/sun/HEAD/sun/config.go -------------------------------------------------------------------------------- /sun/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunProxy/sun/HEAD/sun/config_test.go -------------------------------------------------------------------------------- /sun/event/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunProxy/sun/HEAD/sun/event/event.go -------------------------------------------------------------------------------- /sun/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunProxy/sun/HEAD/sun/handler.go -------------------------------------------------------------------------------- /sun/ip_addr/ip_addr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunProxy/sun/HEAD/sun/ip_addr/ip_addr.go -------------------------------------------------------------------------------- /sun/loadbalancer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunProxy/sun/HEAD/sun/loadbalancer.go -------------------------------------------------------------------------------- /sun/loadbalancer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunProxy/sun/HEAD/sun/loadbalancer_test.go -------------------------------------------------------------------------------- /sun/logger/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunProxy/sun/HEAD/sun/logger/logger.go -------------------------------------------------------------------------------- /sun/packet/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunProxy/sun/HEAD/sun/packet/auth.go -------------------------------------------------------------------------------- /sun/packet/disconnect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunProxy/sun/HEAD/sun/packet/disconnect.go -------------------------------------------------------------------------------- /sun/packet/id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunProxy/sun/HEAD/sun/packet/id.go -------------------------------------------------------------------------------- /sun/packet/text.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunProxy/sun/HEAD/sun/packet/text.go -------------------------------------------------------------------------------- /sun/packet/transfer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunProxy/sun/HEAD/sun/packet/transfer.go -------------------------------------------------------------------------------- /sun/packet/user_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunProxy/sun/HEAD/sun/packet/user_info.go -------------------------------------------------------------------------------- /sun/planet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunProxy/sun/HEAD/sun/planet.go -------------------------------------------------------------------------------- /sun/planet/planet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunProxy/sun/HEAD/sun/planet/planet.go -------------------------------------------------------------------------------- /sun/plugin/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunProxy/sun/HEAD/sun/plugin/plugin.go -------------------------------------------------------------------------------- /sun/plugin/plugin_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunProxy/sun/HEAD/sun/plugin/plugin_manager.go -------------------------------------------------------------------------------- /sun/ray.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunProxy/sun/HEAD/sun/ray.go -------------------------------------------------------------------------------- /sun/ray/ray.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunProxy/sun/HEAD/sun/ray/ray.go -------------------------------------------------------------------------------- /sun/ray/translations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunProxy/sun/HEAD/sun/ray/translations.go -------------------------------------------------------------------------------- /sun/remote/remote.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunProxy/sun/HEAD/sun/remote/remote.go -------------------------------------------------------------------------------- /sun/resource_packs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunProxy/sun/HEAD/sun/resource_packs.go -------------------------------------------------------------------------------- /sun/sun.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunProxy/sun/HEAD/sun/sun.go --------------------------------------------------------------------------------