welsonjs/app/assets/protos/WelsonAppLoader.proto

15 lines
243 B
Protocol Buffer

syntax = "proto3";
service WelsonAppLoader {
rpc Run (AppRequest) returns (AppResponse) {}
}
message AppRequest {
string appName = 1;
}
// The response message containing the greetings
message AppResponse {
string responseText = 1;
}