├── .bumpversion.cfg ├── .gitignore ├── .gitlab-ci.yml ├── LICENSE ├── Makefile ├── README.md ├── boot.go ├── boot_test.go ├── client.go ├── client_test.go ├── failover.go ├── failover_test.go ├── go.mod ├── go.sum ├── interface.go ├── ip.go ├── ip_test.go ├── key.go ├── key_test.go ├── models ├── boot.go ├── cancellation.go ├── failover.go ├── ip.go ├── key.go ├── rdns.go ├── reset.go └── server.go ├── rdns.go ├── rdns_test.go ├── reset.go ├── reset_test.go ├── server.go ├── server_test.go └── test └── response ├── boot_rescue_get_active.json ├── boot_rescue_get_inactive.json ├── boot_rescue_set.json ├── boot_rescue_set_with_key.json ├── failover_get.json ├── failover_list.json ├── ip_list.json ├── key_list.json ├── rdns_get.json ├── rdns_list.json ├── reset_get.json ├── reset_post.json ├── server_get.json ├── server_get_404.json ├── server_list.json └── server_reverse.json /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nl2go/hrobot-go/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | coverage.out 2 | /.idea/ 3 | *.iml 4 | -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nl2go/hrobot-go/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nl2go/hrobot-go/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nl2go/hrobot-go/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nl2go/hrobot-go/HEAD/README.md -------------------------------------------------------------------------------- /boot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nl2go/hrobot-go/HEAD/boot.go -------------------------------------------------------------------------------- /boot_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nl2go/hrobot-go/HEAD/boot_test.go -------------------------------------------------------------------------------- /client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nl2go/hrobot-go/HEAD/client.go -------------------------------------------------------------------------------- /client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nl2go/hrobot-go/HEAD/client_test.go -------------------------------------------------------------------------------- /failover.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nl2go/hrobot-go/HEAD/failover.go -------------------------------------------------------------------------------- /failover_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nl2go/hrobot-go/HEAD/failover_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nl2go/hrobot-go/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nl2go/hrobot-go/HEAD/go.sum -------------------------------------------------------------------------------- /interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nl2go/hrobot-go/HEAD/interface.go -------------------------------------------------------------------------------- /ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nl2go/hrobot-go/HEAD/ip.go -------------------------------------------------------------------------------- /ip_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nl2go/hrobot-go/HEAD/ip_test.go -------------------------------------------------------------------------------- /key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nl2go/hrobot-go/HEAD/key.go -------------------------------------------------------------------------------- /key_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nl2go/hrobot-go/HEAD/key_test.go -------------------------------------------------------------------------------- /models/boot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nl2go/hrobot-go/HEAD/models/boot.go -------------------------------------------------------------------------------- /models/cancellation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nl2go/hrobot-go/HEAD/models/cancellation.go -------------------------------------------------------------------------------- /models/failover.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nl2go/hrobot-go/HEAD/models/failover.go -------------------------------------------------------------------------------- /models/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nl2go/hrobot-go/HEAD/models/ip.go -------------------------------------------------------------------------------- /models/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nl2go/hrobot-go/HEAD/models/key.go -------------------------------------------------------------------------------- /models/rdns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nl2go/hrobot-go/HEAD/models/rdns.go -------------------------------------------------------------------------------- /models/reset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nl2go/hrobot-go/HEAD/models/reset.go -------------------------------------------------------------------------------- /models/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nl2go/hrobot-go/HEAD/models/server.go -------------------------------------------------------------------------------- /rdns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nl2go/hrobot-go/HEAD/rdns.go -------------------------------------------------------------------------------- /rdns_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nl2go/hrobot-go/HEAD/rdns_test.go -------------------------------------------------------------------------------- /reset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nl2go/hrobot-go/HEAD/reset.go -------------------------------------------------------------------------------- /reset_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nl2go/hrobot-go/HEAD/reset_test.go -------------------------------------------------------------------------------- /server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nl2go/hrobot-go/HEAD/server.go -------------------------------------------------------------------------------- /server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nl2go/hrobot-go/HEAD/server_test.go -------------------------------------------------------------------------------- /test/response/boot_rescue_get_active.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nl2go/hrobot-go/HEAD/test/response/boot_rescue_get_active.json -------------------------------------------------------------------------------- /test/response/boot_rescue_get_inactive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nl2go/hrobot-go/HEAD/test/response/boot_rescue_get_inactive.json -------------------------------------------------------------------------------- /test/response/boot_rescue_set.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nl2go/hrobot-go/HEAD/test/response/boot_rescue_set.json -------------------------------------------------------------------------------- /test/response/boot_rescue_set_with_key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nl2go/hrobot-go/HEAD/test/response/boot_rescue_set_with_key.json -------------------------------------------------------------------------------- /test/response/failover_get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nl2go/hrobot-go/HEAD/test/response/failover_get.json -------------------------------------------------------------------------------- /test/response/failover_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nl2go/hrobot-go/HEAD/test/response/failover_list.json -------------------------------------------------------------------------------- /test/response/ip_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nl2go/hrobot-go/HEAD/test/response/ip_list.json -------------------------------------------------------------------------------- /test/response/key_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nl2go/hrobot-go/HEAD/test/response/key_list.json -------------------------------------------------------------------------------- /test/response/rdns_get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nl2go/hrobot-go/HEAD/test/response/rdns_get.json -------------------------------------------------------------------------------- /test/response/rdns_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nl2go/hrobot-go/HEAD/test/response/rdns_list.json -------------------------------------------------------------------------------- /test/response/reset_get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nl2go/hrobot-go/HEAD/test/response/reset_get.json -------------------------------------------------------------------------------- /test/response/reset_post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nl2go/hrobot-go/HEAD/test/response/reset_post.json -------------------------------------------------------------------------------- /test/response/server_get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nl2go/hrobot-go/HEAD/test/response/server_get.json -------------------------------------------------------------------------------- /test/response/server_get_404.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nl2go/hrobot-go/HEAD/test/response/server_get_404.json -------------------------------------------------------------------------------- /test/response/server_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nl2go/hrobot-go/HEAD/test/response/server_list.json -------------------------------------------------------------------------------- /test/response/server_reverse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nl2go/hrobot-go/HEAD/test/response/server_reverse.json --------------------------------------------------------------------------------