mirror of
https://github.com/usememos/memos.git
synced 2024-11-17 20:25:46 +08:00
13 lines
157 B
Protocol Buffer
13 lines
157 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package memos.store;
|
|
|
|
option go_package = "gen/store";
|
|
|
|
enum RowStatus {
|
|
ROW_STATUS_UNSPECIFIED = 0;
|
|
|
|
NORMAL = 1;
|
|
|
|
ARCHIVED = 2;
|
|
}
|