First monitoring API endpoint implemented
diff --git a/openstack/identity/service_catalog.go b/openstack/identity/service_catalog.go
index fc2717a..af6bbdb 100644
--- a/openstack/identity/service_catalog.go
+++ b/openstack/identity/service_catalog.go
@@ -7,17 +7,17 @@
 }
 
 type CatalogEntry struct {
-	Name string
-	Type string
+	Name      string
+	Type      string
 	Endpoints []Endpoint
 }
 
 type Endpoint struct {
-	TenantId string
-	PublicURL string
+	TenantId    string
+	PublicURL   string
 	InternalURL string
-	Region string
-	VersionId string
+	Region      string
+	VersionId   string
 	VersionInfo string
 	VersionList string
 }
@@ -45,8 +45,8 @@
 			return ces, err
 		}
 		ces[i] = CatalogEntry{
-			Name: d["name"].(string),
-			Type: d["type"].(string),
+			Name:      d["name"].(string),
+			Type:      d["type"].(string),
 			Endpoints: eps,
 		}
 	}