protobuff for get enclave config

This commit is contained in:
Noor 2024-12-11 13:33:39 +00:00
parent 123842e470
commit dd4b0f7f9f

@ -6,6 +6,8 @@ message SetConfigResponse {
string status = 1;
}
message Empty {}
// The main Config structure
message ManagerConfigPB {
repeated FileEntry filesystem = 1;
@ -36,4 +38,5 @@ message ChildProcess {
service ConfigManager {
rpc SetConfig(ManagerConfigPB) returns (SetConfigResponse) {}
rpc GetConfig(Empty) returns (ManagerConfigPB) {}
}