unit.go 239 B

1234567891011121314
  1. package kubemodel
  2. // @bingen:generate:Unit
  3. type Unit string
  4. type Measurement = float64
  5. const (
  6. UnitMillicore = "m"
  7. UnitByte = "B"
  8. UnitSecond = "s"
  9. UnitMillicoreSecond = "m-s"
  10. UnitByteSecond = "B-s"
  11. )