From 5ae07787b230c0e2f74fca7f49f147608dbb1a7e Mon Sep 17 00:00:00 2001 From: Michael Riley Date: Thu, 2 Jun 2022 14:26:44 -0400 Subject: [PATCH] Add GPU specific fields to plan struct (#224) --- plans.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plans.go b/plans.go index 66abfde..1523a39 100644 --- a/plans.go +++ b/plans.go @@ -44,6 +44,8 @@ type Plan struct { Bandwidth int `json:"bandwidth"` MonthlyCost float32 `json:"monthly_cost"` Type string `json:"type"` + GPUVRAM int `json:"gpu_vram_gb,omitempty"` + GPUType string `json:"gpu_type,omitempty"` Locations []string `json:"locations"` }