recommender/pkg/protos/documentService/service.proto

15 lines
277 B
Protocol Buffer
Raw Permalink Normal View History

2024-11-06 10:47:56 +00:00
syntax = "proto3";
option go_package = ".;documentService";
service DocumentService {
rpc ListDocuments(ListDocumentsRequest) returns (ListDocumentsResponse);
}
message ListDocumentsRequest {
string Message = 1;
}
message ListDocumentsResponse {
string Message = 1;
}