15 lines
232 B
Protocol Buffer
Raw Normal View History

2021-07-22 22:26:38 +08:00
syntax = "proto3";
message CreateDocRequest {
2021-07-23 08:14:45 +08:00
string id = 1;
2021-07-22 22:26:38 +08:00
string name = 2;
2021-07-23 08:14:45 +08:00
string desc = 3;
2021-07-22 22:26:38 +08:00
}
message Doc {
string id = 1;
string name = 2;
2021-07-23 08:14:45 +08:00
string desc = 3;
string path = 4;
string content = 5;
2021-07-22 22:26:38 +08:00
}