Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 0 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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

2 changes: 0 additions & 2 deletions ovh/ovh.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -39,7 +38,6 @@ var Endpoints = map[string]string{
"kimsufi-ca": KimsufiCA,
"soyoustart-eu": SoyoustartEU,
"soyoustart-ca": SoyoustartCA,
"runabove-ca": RunaboveCA,
}

// Errors
Expand Down