splitting proto conf, still some errors, fixing

This commit is contained in:
filipriec
2025-02-22 13:09:13 +01:00
parent 740d1d83c4
commit 449f1bd14e
15 changed files with 132 additions and 51 deletions

View File

@@ -0,0 +1,20 @@
syntax = "proto3";
package multieko2.table_structure;
import "common.proto";
message TableStructureResponse {
repeated TableColumn columns = 1;
}
message TableColumn {
string name = 1;
string data_type = 2;
bool is_nullable = 3;
bool is_primary_key = 4;
}
service TableStructureService {
rpc GetAdresarTableStructure (common.Empty) returns (TableStructureResponse);
rpc GetUctovnictvoTableStructure (common.Empty) returns (TableStructureResponse);
}