mirror of
https://github.com/gnh1201/welsonjs.git
synced 2025-02-11 17:34:58 +00:00
15 lines
243 B
Protocol Buffer
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;
|
|
}
|