mirror of
https://github.com/usememos/memos.git
synced 2024-12-21 02:01:55 +03:00
25 lines
429 B
Go
25 lines
429 B
Go
|
package v1
|
||
|
|
||
|
// UnknownID is the ID for unknowns.
|
||
|
const UnknownID = -1
|
||
|
|
||
|
// 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 ""
|
||
|
}
|