leaf-library-3/proto/api/v1/document_service.proto

17 lines
298 B
Protocol Buffer
Raw Permalink Normal View History

2024-12-05 17:44:29 +00:00
syntax = "proto3";
package template.document;
option go_package = "gen/api/v1";
service DocumentService {
rpc ListDocuments(ListDocumentsRequest) returns (ListDocumentsResponse);
}
message ListDocumentsRequest {
string Message = 1;
}
message ListDocumentsResponse {
string Message = 1;
}