18 lines
274 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;
string text = 4;
2021-07-22 22:26:38 +08:00
}
2021-07-24 14:05:49 +08:00
message DocInfo {
2021-07-22 22:26:38 +08:00
string id = 1;
string name = 2;
2021-07-23 08:14:45 +08:00
string desc = 3;
string path = 4;
}
2021-07-24 14:05:49 +08:00
message DocData {
string text = 1;
2021-07-22 22:26:38 +08:00
}