feat: initial buf proto files

This commit is contained in:
Steven
2023-07-31 19:57:31 +08:00
parent 4cc2de8e82
commit 1f9c87b81b
13 changed files with 1198 additions and 18 deletions

13
proto/api/v2/common.proto Normal file
View File

@@ -0,0 +1,13 @@
syntax = "proto3";
package slash.api.v2;
option go_package = "gen/api/v2";
enum RowStatus {
ROW_STATUS_UNSPECIFIED = 0;
ACTIVE = 1;
ARCHIVED = 2;
}