mirror of
https://github.com/usememos/memos.git
synced 2024-11-10 17:02:21 +08:00
5b6c98582e
* refactor: migrate storage to apiv1 * chore: update * chore: update * chore: update
15 lines
297 B
Go
15 lines
297 B
Go
package store
|
|
|
|
// 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 (r RowStatus) String() string {
|
|
return string(r)
|
|
}
|