From 9559927380abf00890c0be63f8371e9c20092acb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20Delattre?= Date: Fri, 30 Jun 2017 10:15:45 +0200 Subject: [PATCH] Revert "Add OVH US API url" --- ovh/ovh.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/ovh/ovh.go b/ovh/ovh.go index 7ee8f004..737c9447 100644 --- a/ovh/ovh.go +++ b/ovh/ovh.go @@ -21,7 +21,6 @@ const DefaultTimeout = 180 * time.Second const ( OvhEU = "https://eu.api.ovh.com/1.0" OvhCA = "https://ca.api.ovh.com/1.0" - OvhUS = "https://api.ovh.us/1.0" KimsufiEU = "https://eu.api.kimsufi.com/1.0" KimsufiCA = "https://ca.api.kimsufi.com/1.0" SoyoustartEU = "https://eu.api.soyoustart.com/1.0" @@ -33,7 +32,6 @@ const ( var Endpoints = map[string]string{ "ovh-eu": OvhEU, "ovh-ca": OvhCA, - "ovh-us": OvhUS, "kimsufi-eu": KimsufiEU, "kimsufi-ca": KimsufiCA, "soyoustart-eu": SoyoustartEU,