Просмотр исходного кода

Add usage type back

Signed-off-by: Sean Holcomb <seanholcomb@gmail.com>
Sean Holcomb 5 дней назад
Родитель
Сommit
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"
+)