فهرست منبع

Add usage type back

Signed-off-by: Sean Holcomb <seanholcomb@gmail.com>
Sean Holcomb 5 روز پیش
والد
کامیت
c62784ad3b
1فایلهای تغییر یافته به همراه10 افزوده شده و 0 حذف شده
  1. 10 0
      core/pkg/model/shared/usagetype.go

+ 10 - 0
core/pkg/model/shared/usagetype.go

@@ -0,0 +1,10 @@
+package shared
+
+// TODO remove this?
+type UsageType string
+
+const (
+	UsageTypeEmpty    UsageType = ""
+	UsageTypeOnDemand UsageType = "OnDemand"
+	UsageTypeSpot     UsageType = "Spot"
+)