rag/api/library/library.proto

25 lines
429 B
Protocol Buffer
Raw Normal View History

2024-07-15 13:08:48 +00:00
syntax = "proto3";
package LibraryService;
option go_package = "leafdev.top/leaf/rag/proto/library";
import "google/api/annotations.proto";
import "google.golang.org/grpc/health/grpc_health_v1";
service LibraryService {
rpc ListLibrary(ListLibraryRequest) returns (ListLibraryResponse) {
option (google.api.http) = {
get: "/library"
};
}
}
message ListLibraryRequest {
}
message ListLibraryResponse {
}