Skip to content

Commit

Permalink
fix plan types to handle brazil (#192)
Browse files Browse the repository at this point in the history
  • Loading branch information
ddymko committed Dec 1, 2021
1 parent 2f2d79d commit 4cfcd33
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plans.go
Expand Up @@ -29,7 +29,7 @@ type BareMetalPlan struct {
Disk int `json:"disk"`
DiskCount int `json:"disk_count"`
Bandwidth int `json:"bandwidth"`
MonthlyCost int `json:"monthly_cost"`
MonthlyCost float32 `json:"monthly_cost"`
Type string `json:"type"`
Locations []string `json:"locations"`
}
Expand All @@ -42,7 +42,7 @@ type Plan struct {
Disk int `json:"disk"`
DiskCount int `json:"disk_count"`
Bandwidth int `json:"bandwidth"`
MonthlyCost int `json:"monthly_cost"`
MonthlyCost float32 `json:"monthly_cost"`
Type string `json:"type"`
Locations []string `json:"locations"`
}
Expand Down

0 comments on commit 4cfcd33

Please sign in to comment.