diff --git a/README.md b/README.md index 33b20b77..67fcfb24 100644 --- a/README.md +++ b/README.md @@ -87,7 +87,6 @@ Depending on the API you want to use, you may set the ``endpoint`` to: * ``soyoustart-ca`` for So you Start Canada API * ``kimsufi-eu`` for Kimsufi Europe API * ``kimsufi-ca`` for Kimsufi Canada API -* ``runabove-ca`` for RunAbove API * Or any arbitrary URL to use in a test for example The client will successively attempt to locate this configuration file in @@ -500,14 +499,6 @@ go vet ./... - **Create application credentials**: https://ca.api.kimsufi.com/createApp/ - **Create script credentials** (all keys at once): https://ca.api.kimsufi.com/createToken/ -### Runabove - -- **Community support**: https://community.runabove.com/ -- **Console**: https://api.runabove.com/console/ -- **Create application credentials**: https://api.runabove.com/createApp/ -- **High level SDK**: https://github.com/runabove/python-runabove - ## License 3-Clause BSD - diff --git a/ovh/ovh.go b/ovh/ovh.go index 3fca5ba5..873f086f 100644 --- a/ovh/ovh.go +++ b/ovh/ovh.go @@ -27,7 +27,6 @@ const ( KimsufiCA = "https://ca.api.kimsufi.com/1.0" SoyoustartEU = "https://eu.api.soyoustart.com/1.0" SoyoustartCA = "https://ca.api.soyoustart.com/1.0" - RunaboveCA = "https://api.runabove.com/1.0" ) // Endpoints conveniently maps endpoints names to their URI for external configuration @@ -39,7 +38,6 @@ var Endpoints = map[string]string{ "kimsufi-ca": KimsufiCA, "soyoustart-eu": SoyoustartEU, "soyoustart-ca": SoyoustartCA, - "runabove-ca": RunaboveCA, } // Errors