├── .gitignore ├── LICENSE ├── README.md ├── cpanel ├── authenticated.go ├── branding.go ├── chrome.go ├── cpanel.go ├── domains.go ├── feature.go ├── fileman.go ├── live.go ├── live_test.go ├── locale.go ├── nvdata.go ├── quota.go ├── ssl.go ├── ssl_test.go ├── theme.go └── zoneedit.go ├── cpanelgo.go ├── cpanelgo_test.go ├── example └── cpanelcli.go ├── go.mod └── whm ├── account.go ├── impersonation.go ├── servicessl.go ├── ssl.go ├── tweak.go ├── user.go └── whm.go /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleetssl/cpanelgo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleetssl/cpanelgo/HEAD/README.md -------------------------------------------------------------------------------- /cpanel/authenticated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleetssl/cpanelgo/HEAD/cpanel/authenticated.go -------------------------------------------------------------------------------- /cpanel/branding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleetssl/cpanelgo/HEAD/cpanel/branding.go -------------------------------------------------------------------------------- /cpanel/chrome.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleetssl/cpanelgo/HEAD/cpanel/chrome.go -------------------------------------------------------------------------------- /cpanel/cpanel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleetssl/cpanelgo/HEAD/cpanel/cpanel.go -------------------------------------------------------------------------------- /cpanel/domains.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleetssl/cpanelgo/HEAD/cpanel/domains.go -------------------------------------------------------------------------------- /cpanel/feature.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleetssl/cpanelgo/HEAD/cpanel/feature.go -------------------------------------------------------------------------------- /cpanel/fileman.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleetssl/cpanelgo/HEAD/cpanel/fileman.go -------------------------------------------------------------------------------- /cpanel/live.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleetssl/cpanelgo/HEAD/cpanel/live.go -------------------------------------------------------------------------------- /cpanel/live_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleetssl/cpanelgo/HEAD/cpanel/live_test.go -------------------------------------------------------------------------------- /cpanel/locale.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleetssl/cpanelgo/HEAD/cpanel/locale.go -------------------------------------------------------------------------------- /cpanel/nvdata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleetssl/cpanelgo/HEAD/cpanel/nvdata.go -------------------------------------------------------------------------------- /cpanel/quota.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleetssl/cpanelgo/HEAD/cpanel/quota.go -------------------------------------------------------------------------------- /cpanel/ssl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleetssl/cpanelgo/HEAD/cpanel/ssl.go -------------------------------------------------------------------------------- /cpanel/ssl_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleetssl/cpanelgo/HEAD/cpanel/ssl_test.go -------------------------------------------------------------------------------- /cpanel/theme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleetssl/cpanelgo/HEAD/cpanel/theme.go -------------------------------------------------------------------------------- /cpanel/zoneedit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleetssl/cpanelgo/HEAD/cpanel/zoneedit.go -------------------------------------------------------------------------------- /cpanelgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleetssl/cpanelgo/HEAD/cpanelgo.go -------------------------------------------------------------------------------- /cpanelgo_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleetssl/cpanelgo/HEAD/cpanelgo_test.go -------------------------------------------------------------------------------- /example/cpanelcli.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleetssl/cpanelgo/HEAD/example/cpanelcli.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleetssl/cpanelgo/HEAD/go.mod -------------------------------------------------------------------------------- /whm/account.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleetssl/cpanelgo/HEAD/whm/account.go -------------------------------------------------------------------------------- /whm/impersonation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleetssl/cpanelgo/HEAD/whm/impersonation.go -------------------------------------------------------------------------------- /whm/servicessl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleetssl/cpanelgo/HEAD/whm/servicessl.go -------------------------------------------------------------------------------- /whm/ssl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleetssl/cpanelgo/HEAD/whm/ssl.go -------------------------------------------------------------------------------- /whm/tweak.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleetssl/cpanelgo/HEAD/whm/tweak.go -------------------------------------------------------------------------------- /whm/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleetssl/cpanelgo/HEAD/whm/user.go -------------------------------------------------------------------------------- /whm/whm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleetssl/cpanelgo/HEAD/whm/whm.go --------------------------------------------------------------------------------