├── .gitignore ├── LICENSE ├── README.md ├── digitalocean └── digitalocean.go ├── main.go ├── main_test.go ├── providers ├── providers.go └── providers_test.go └── ssh └── ssh.go /.gitignore: -------------------------------------------------------------------------------- 1 | remotectl 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattatcha/remotectl/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattatcha/remotectl/HEAD/README.md -------------------------------------------------------------------------------- /digitalocean/digitalocean.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattatcha/remotectl/HEAD/digitalocean/digitalocean.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattatcha/remotectl/HEAD/main.go -------------------------------------------------------------------------------- /main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattatcha/remotectl/HEAD/main_test.go -------------------------------------------------------------------------------- /providers/providers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattatcha/remotectl/HEAD/providers/providers.go -------------------------------------------------------------------------------- /providers/providers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattatcha/remotectl/HEAD/providers/providers_test.go -------------------------------------------------------------------------------- /ssh/ssh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattatcha/remotectl/HEAD/ssh/ssh.go --------------------------------------------------------------------------------