memos/api/common.go

25 lines
430 B
Go
Raw Normal View History

2022-05-19 18:32:04 +08:00
package api
// UnknownID is the ID for unknowns.
const UnknownID = -1
2022-05-19 18:32:04 +08:00
// RowStatus is the status for a row.
type RowStatus string
const (
// Normal is the status for a normal row.
Normal RowStatus = "NORMAL"
// Archived is the status for an archived row.
Archived RowStatus = "ARCHIVED"
)
func (e RowStatus) String() string {
switch e {
case Normal:
return "NORMAL"
case Archived:
return "ARCHIVED"
}
return ""
}