common.go 297 B

123456789101112131415
  1. package store
  2. // RowStatus is the status for a row.
  3. type RowStatus string
  4. const (
  5. // Normal is the status for a normal row.
  6. Normal RowStatus = "NORMAL"
  7. // Archived is the status for an archived row.
  8. Archived RowStatus = "ARCHIVED"
  9. )
  10. func (r RowStatus) String() string {
  11. return string(r)
  12. }